重写toFixed,完美解决原生js小数点问题
存在的问题 - 有些浏览器会存在这个问题
(1.35).toFixed(1) // 1.4
(1.45).toFixed(1) // 1.4
(1.55).toFixed(1) // 1.61.45应该返回的是1.5
解决方案:
Number.prototype.toFixed function(decimal){let str this.toString()let strArr str.split(.)let d pars…
2026/8/21 15:08:48