如何在Jquery中将浮点值舍入为其最接近的整数

How to round a floating value to its closest integer in Jquery

我想把130.68值(大于或等于130.5)和131.32值(小于131.5)四舍五入到131值。


使用Math.Round()。

1
2
Math.round(130.68); // return 131
Math.round(131.32); // return 131

IDLE拆卸


您需要使用math.round(),在下面的示例中,这两个语句都将警告131

1
2
alert(Math.round(130.68));
alert(Math.round(131.32));

演示


使用此链接:

使用Math.Round()。


你可以用数学.round

1
2
num=130.68;
Math.round(num);