javascript 四舍五入; js 四舍五入


 

方法 Math.round

round() 方法可把一個數字舍入為最接近的整數。

對於 0.5,該方法將進行上舍入。

例如,3.5 將舍入為 4,而 -3.5 將舍入為 -3。

Math.round(748.58)   結果:749

Math.round(748.5867*100) 結果:74859

Math.round(748.5867*100)/100  結果:748.59  保留兩位

Math.round(748.5867*1000)/1000  結果:748.587  保留三位

通用js方法:

function format45(val,v2) {
    if (isNaN(val) || val == undefined || val == null) { return null; }
    return Math.round(val * v2) / v2;
}

format45(748.586767,10000)  結果:748.5868

 

相關文檔:

http://www.w3school.com.cn/jsref/jsref_round.asp

 

匯總整理:

一、 數據庫解決方案:

Round()、Convert()、Cast() 方法

https://www.cnblogs.com/hao-1234-1234/p/8574188.html 

三、 前端解決方案:

js中 Math.round()方法

https://www.cnblogs.com/hao-1234-1234/p/11150134.html

四、服務器端解決方案(C#)

Math.Round方法

https://www.cnblogs.com/hao-1234-1234/p/8668258.html


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM