本文介绍了Javascript:将边界0.5的小数点后两位取整的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何获取舍入数0.5,之前我在此链接中找到
How to get the rounding number of 0.5, previously I found in this link:
点击
但这不是我想要的:
我想要这个例子:
- 10.24 = 10.25
- 17.90 = 17.90
- 3.89 = 3.90
- 7.63 = 7.65
- 10.24 = 10.25
- 17.90 = 17.90
- 3.89 = 3.90
- 7.63 = 7.65
jQuery会很适合我。
jQuery will be fine with me.
推荐答案
使用 Math.round(num * 20)/ 20
,如果您想将数字四舍五入到最接近的 0.05
。
Use Math.round(num * 20) / 20
, if you are looking to round a number to nearest 0.05
.
这篇关于Javascript:将边界0.5的小数点后两位取整的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!