原创 JS 中如何保留一位小数

字符串对象有一个 .toFixed(1) 方法

> num = 12.445543
12.445543

> num.toFixed(1)
'12.4'
1
2
3
4
5