var n = 0.015.toFixed(2);
console.log(n);
真实结果"0.01",但是想得到"0.02",求解决方法
var n = 0.015.toFixed(2);
console.log(n);
真实结果"0.01",但是想得到"0.02",求解决方法
10 回答11.3k 阅读
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答2.8k 阅读✓ 已解决
3 回答2.4k 阅读✓ 已解决
3 回答2.2k 阅读✓ 已解决
2 回答2.7k 阅读✓ 已解决
toFixed
存在兼容性问题,0.015.toFixed(2)
各浏览器结果:可以这样写:
Math.round(0.015*100)/100
,抽取成公用的方法