当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript ceil()方法
The ceil() method returns the value of a number rounded UPWARDS to the nearest integer.
ceil()方法返回了比浮点参数number 大的最小整数(往大的方向四舍五入)
Math.ceil(x) |
Parameter 参数 | Description 描述 |
---|---|
x | Required. A number 必选。数字 |
In the following example we will use the ceil() method on different numbers:
下面代码中我们将对不同数字使用ceil()方法:
<script type="text/javascript"> document.write(Math.ceil(0.60) + "<br />") </script> |
The output of the code above will be:
输出结果为:
1 |
ceil()
How to use ceil().
怎样使用ceil()