我需要将6.688689
舍入为6.7
,但是它总是向我显示7
。
我的方法:
Math.round(6.688689);
//or
Math.round(6.688689, 1);
//or
Math.round(6.688689, 2);
但是结果始终是相同的
7
...我在做什么错? 最佳答案
Number((6.688689).toFixed(1)); // 6.7
关于javascript - 如何在javascript中舍入浮点数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9453421/