首頁  >  文章  >  web前端  >  JavaScript如何實現資料的四捨五入

JavaScript如何實現資料的四捨五入

清浅
清浅原創
2019-01-16 14:37:555377瀏覽

實作資料的四捨五入有以下幾種方法:round方法、tofixed方法、parseInt方法、ceil方法以及floor方法

JavaScript如何實現資料的四捨五入

在JavaScript 對數值進行四捨五入的操作有以下幾種

round()方法:可把一個數字捨入為最接近的整數,即四捨五入

toFixed()方法:可把Number 四捨五入為指定小數位數的數字。

parseInt()方法:可將小數轉換為整數(位元運算元)

方法:可對一個數字進行下捨入

接下來在文章中將和大家詳細介紹這幾種方法的具體用法

round()方法

	document.write(Math.round(4.55) + "<br>");
	document.write(Math.round(-6.45));
效果圖:


JavaScript如何實現資料的四捨五入


#toFixed()方法

var num=3.141592;
document.write(num.toFixed(2));
效果圖:

JavaScript如何實現資料的四捨五入

parseInt()方法

document.write(parseInt("12.333"));
	
效果圖:


Image 17.jpg

ceil()方法與floor()方法

document.write("ceil方法:")
document.write(Math.ceil("12.333") + "<br>");
document.write("floor方法:")
document.write(Math.floor("12.333"));
效果圖:

以上是JavaScript如何實現資料的四捨五入的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn