JavaScript Math.round() 方法
Math.round() 方法可把一个数字舍入为最接近的整数
2.49 四舍五入得 2 , 2.5 四舍五入得 3
浏览器支持
支持 | 支持 | 支持 | 支持 | 支持 |
语法
Math.round( x )
参数值
参数 | 描述 |
---|---|
x | 必需。必须是数字 |
返回值
类型 | 描述 |
---|---|
Number | 最接近的整数 |
范例
round() 方法可把一个数字舍入为最接近的整数
Math.round(2.5);
范例
把不同的数舍入为最接近的整数
var a=Math.round(2.60); var b=Math.round(2.50); var c=Math.round(2.49); var d=Math.round(-2.60); var e=Math.round(-2.50); var f=Math.round(-2.49);