JS保留兩位小數(shù),多位小數(shù)的示例代碼_javascript技巧
來源:懂視網(wǎng)
責(zé)編:小采
時間:2020-11-27 21:18:21
JS保留兩位小數(shù),多位小數(shù)的示例代碼_javascript技巧
JS保留兩位小數(shù),多位小數(shù)的示例代碼_javascript技巧: 代碼如下:function formatFloat(src, pos){ return Math.round(src*Math.pow(10, pos))/Math.pow(10, pos);} alert(formatFloat(1212.2323, 2));//-->還有如下幾種方法: 代碼如下:var test=88888.234; aler
導(dǎo)讀JS保留兩位小數(shù),多位小數(shù)的示例代碼_javascript技巧: 代碼如下:function formatFloat(src, pos){ return Math.round(src*Math.pow(10, pos))/Math.pow(10, pos);} alert(formatFloat(1212.2323, 2));//-->還有如下幾種方法: 代碼如下:var test=88888.234; aler
代碼如下:
還有如下幾種方法:
代碼如下:
var test=88888.234;
alert(test.toFixed(2));
// Float數(shù)據(jù)四舍五入到2位小數(shù);
function to2bits(flt) {
if(parseFloat(flt) == flt)
return Math.round(flt * 100) / 100;
// 到4位小數(shù), return Math.round(flt * 10000) / 10000;
else
return 0;
}
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
JS保留兩位小數(shù),多位小數(shù)的示例代碼_javascript技巧
JS保留兩位小數(shù),多位小數(shù)的示例代碼_javascript技巧: 代碼如下:function formatFloat(src, pos){ return Math.round(src*Math.pow(10, pos))/Math.pow(10, pos);} alert(formatFloat(1212.2323, 2));//-->還有如下幾種方法: 代碼如下:var test=88888.234; aler