js截取小数点后两位的方法,不要四舍五入的
时间: 2023-02-12 18:39:40 浏览: 392
JS保留小数点(四舍五入、四舍六入)实现思路及实例
在 JavaScript 中,你可以使用 toFixed() 方法来截取小数点后的两位。
例如:
```
let num = 123.456789;
num = num.toFixed(2);
console.log(num); // 输出:123.46
```
注意,toFixed() 方法会四舍五入。如果你不想进行四舍五入,你可以使用 Math.floor() 函数和 toFixed() 方法配合使用。例如:
```
let num = 123.456789;
num = Math.floor(num * 100) / 100;
num = num.toFixed(2);
console.log(num); // 输出:123.45
```
这样就可以得到小数点后两位的结果,而且不会进行四舍五入。
阅读全文