四舍五入
var num =2.446242342;
num = num.toFixed(2); // 输出结果为 2.45
不四舍五入
Math.floor(12.1212111*100)/100; // 输出结果为 12.12
四舍五入
var num =2.446242342;
num = num.toFixed(2); // 输出结果为 2.45
不四舍五入
Math.floor(12.1212111*100)/100; // 输出结果为 12.12
本文标题:JavaScript 保留两位小数
本文链接:https://www.haomeiwen.com/subject/fytghqtx.html
网友评论