javascript奇怪的舍入问题

发布于 2024-08-02 11:28:28 字数 406 浏览 3 评论 0原文

我有以下用于舍入的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暮倦 2024-08-09 11:28:28

您可以在 Numbers 上使用内置的 toFixed 方法:

https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Number/toFixed

Number(val.toFixed(numberofDigits))

You can use the built-in toFixed method on Numbers:

https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Number/toFixed

Number(val.toFixed(numberofDigits))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文