javascript奇怪的舍入问题
我有以下用于舍入的 javascript 函数:
function round(val, numberdigits){
return Math.round(val*Math.pow(10, numberdigits))/Math.pow(10, numberdigits);
}
在大多数情况下,它的工作效果很好,但在极少数情况下,返回的值多一位数,始终为 5。
numberofdigits = 3 的结果示例列表:
5.329 - 5.081 - 4.271 - 3.271 - 2.1525 - 2.1375 - 2.1225 - 1.997 - 2.044 - 2.031 - 2.028
有人能解释一下吗?或者也许为我提供一个更好的舍入函数来防止这个问题?
I have the following javascript function for rounding:
function round(val, numberdigits){
return Math.round(val*Math.pow(10, numberdigits))/Math.pow(10, numberdigits);
}
In most of the cases, it does its job well, but in some rare cases, the returned value has one digit more, which is always a 5.
Example list of results with numberofdigits = 3:
5.329 - 5.081 - 4.271 - 3.271 - 2.1525 - 2.1375 - 2.1225 - 1.997 - 2.044 - 2.031 - 2.028
Can someone explain this? Or maybe provide me with a better rounding function which prevents this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 Numbers 上使用内置的
toFixed
方法:https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Number/toFixed
You can use the built-in
toFixed
method on Numbers:https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Number/toFixed