DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> Javascript Math ceil()、floor()、round()三個函數的區別
Javascript Math ceil()、floor()、round()三個函數的區別
編輯:JavaScript基礎知識     

下面來介紹將小數值捨入為整數的幾個方法:Math.ceil()、Math.floor()和Math.round()。 這三個方法分別遵循下列捨入規則:
◎Math.ceil()執行向上捨入,即它總是將數值向上捨入為最接近的整數;
◎Math.floor()執行向下捨入,即它總是將數值向下捨入為最接近的整數;
◎Math.round()執行標准捨入,即它總是將數值四捨五入為最接近的整數(這也是我們在數學課上學到的捨入規則)。

下面是使用這些方法的示例:

alert(Math.ceil(25.9)); //26
alert(Math.ceil(25.5)); //26
alert(Math.ceil(25.1)); //26
alert(Math.round(25.9)); //26
alert(Math.round(25.5)); //26
alert(Math.round(25.1)); //25
alert(Math.floor(25.9)); //25
alert(Math.floor(25.5)); //25
alert(Math.floor(25.1)); //25

南昌網絡公司技術人員總結:對於所有介於25和26(不包括26)之間的數值,Math.ceil()始終返回26,因為它執行的是向上捨入。Math.round()方法只在數值大於等於25.5時返回26;否則返回25。最後,Math.floor()對所有介於25和26(不包括26)之間的數值都返回25。

以下是一些補充:
ceil():將小數部分一律向整數部分進位。
如:

Math.ceil(12.2)//返回13
Math.ceil(12.7)//返回13
Math.ceil(12.0)// 返回12

floor():一律捨去,僅保留整數。
如:

Math.floor(12.2)// 返回12
Math.floor(12.7)//返回12
Math.floor(12.0)//返回12

round():進行四捨五入
如:

Math.round(12.2)// 返回12
Math.round(12.7)//返回13
Math.round(12.0)//返回12

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