實作資料的四捨五入有以下幾種方法:round方法、tofixed方法、parseInt方法、ceil方法以及floor方法
在JavaScript 對數值進行四捨五入的操作有以下幾種
round()方法:可把一個數字捨入為最接近的整數,即四捨五入
toFixed()方法:可把Number 四捨五入為指定小數位數的數字。
parseInt()方法:可將小數轉換為整數(位元運算元)
方法:可對一個數字進行下捨入
接下來在文章中將和大家詳細介紹這幾種方法的具體用法
round()方法 document.write(Math.round(4.55) + "<br>");
document.write(Math.round(-6.45));
效果圖:
var num=3.141592;
document.write(num.toFixed(2));
效果圖:
document.write(parseInt("12.333"));
效果圖:
document.write("ceil方法:")
document.write(Math.ceil("12.333") + "<br>");
document.write("floor方法:")
document.write(Math.floor("12.333"));
效果圖:
以上是JavaScript如何實現資料的四捨五入的詳細內容。更多資訊請關注PHP中文網其他相關文章!