DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> js的Math.floor方法
js的Math.floor方法
編輯:關於JavaScript     

語法
Math.floor(x)

其中參數x是必需的,可以是任意數值或表達式。

方法執行後返回的值是 小於等於x,且與x最接近的整數。


定義和用法
floor() 方法可對一個數進行下捨入。

說明
floor() 方法執行的是向下取整計算,它返回的是小於或等於函數參數,並且與之最接近的整數。


實例
在本例中,我們將在不同的數字上使用 floor() 方法:

<script type="text/javascript">

document.write(Math.floor(0.60) + "<br />")
document.write(Math.floor(0.40) + "<br />")
document.write(Math.floor(5) + "<br />")
document.write(Math.floor(5.1) + "<br />")
document.write(Math.floor(-5.1) + "<br />")
document.write(Math.floor(-5.9))

</script>

預計輸出:
0
0
5
5
-6
-6

實際效果:


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