DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> 9.7 取整運算round()方法
9.7 取整運算round()方法
編輯:JavaScript基礎知識     

一、round()方法

在JavaScript中,我們可以使用Math對象的round()方法把一個浮點數四捨五入取整。

語法:

 
Math.round(x)

說明:

參數x必須是數字。該方法對x進行四捨五入取整。

對於0.5,該方法將進行上捨入,例如3.5將捨入為4,而-3.5將捨入為-3。

舉例:

在線測試
 
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script type="text/javascript">
        document.write("0.5取整後為:" + Math.round(0.5) + "<br/>");
        document.write("0.49取整後為:" + Math.round(0.49) + "<br/>");
        document.write("-2.4取整後為:" + Math.round(-2.4) + "<br/>");
        document.write("-2.6取整後為:" + Math.round(-2.6));
    </script>
</head>
<body>
</body>
</html>

在浏覽器預覽效果如下:

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved