How to round a floating value to its closest integer in Jquery
我想把
使用Math.Round()。
1 2 | Math.round(130.68); // return 131 Math.round(131.32); // return 131 |
IDLE拆卸
您需要使用math.round(),在下面的示例中,这两个语句都将警告
1 2 | alert(Math.round(130.68)); alert(Math.round(131.32)); |
演示
使用此链接:
使用Math.Round()。
你可以用数学.round
1 2 | num=130.68; Math.round(num); |