js 中floor ,ceil ,around 的使用
Math.floor() :向下取整;
Math.ceil() : 向上取整;
Math.around() : 四舍五入;
例:
alert(Math.ceil(25.9)); //26
alert(Math.ceil(25.5)); //26
alert(Math.ceil(25.1)); //26
alert(Math.round(25.9)); //26
alert(Math.
原创
2016-07-04 10:05:14 ·
1384 阅读 ·
0 评论