当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript round()方法
The round() method rounds a number to the nearest integer.
round()方法将数字四舍五入成最接近的整数。
Math.round(x) |
Parameter 参数 | Description 描述 |
---|---|
x | Required. A number 必选。数字 |
In this example we will round different numbers with the round() method:
在这个举例中我们通过round()方法将不同的数字四舍五入了:
<script type="text/javascript"> document.write(Math.round(0.60) + "<br />") </script> |
The output of the code above will be:
返回的结果为:
1 |
round()
How to use round().
怎样使用round()