Javascript toFixed 舍入差异
toFixed(2) 未对某些十进制值进行舍入,在提供的示例中显示 859.38 而不是 859.39 。这种差异可归因于 toFixed() 方法的浏览器实现的差异。
要避免此问题并确保跨浏览器的舍入一致,请考虑使用 blg 推荐的 toFixed10() 方法。即使对于扩展的精度值,此方法也能提供准确的舍入。
以下是包含 toFixed10() 的更新代码片段:
function toFixed(num, precision) { return (+(Math.round(+(num + 'e' + precision)) + 'e' + -precision)).toFixed(precision); } ... $('#lblTotalSprice').text('$' + addCommas(toFixed(currSprice, 2))); $('#lblTotalPrice').text('$' + addCommas(toFixed(currPrice, 2))); $('#lblTotalDiscount').text('$' + addCommas(toFixed(currDiscount, 2))); $('#lblTotalDeposit').text('$' + addCommas(toFixed(currDeposit, 2)));
以上是为什么 toFixed(2) 对某些小数值的舍入不正确?的详细内容。更多信息请关注PHP中文网其他相关文章!