javascript中Math.ceil()、Math.floor()和Maht.round()

发布时间:2020-02-26编辑:脚本学堂
本文介绍下,javascript中Math.ceil()、Math.floor()和Maht.round()的用法,有需要的朋友参考下。

本节介绍下,在javascript中将小数值舍入为整数的几个方法:Math.ceil()、Math.floor()和Maht.round()。

这三种方法分别遵循下列舍入规则:
Math.ceil()执行向上舍入,即它总是将数值向上舍入为最接近的整数。
Math.floor()执行向下舍入,即它总是将数值向下舍入为最接近的整数。
Math.round()执行标准舍入,即它总是将数值四舍五入为最接近的整数。

示例:
 

复制代码 代码示例:

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.round(25.5)); //26
alert(Math.round(25.1)); //25

alert(Math.floor(25.9)); //25
alert(Math.floor(25.9)); //25
alert(Math.floor(25.1)); //25

说明:
1,对于所有介于25和26(不包括26)之间的数值,Math.ceil()始终返回26,因为它执行的是向上舍入。
2,Math.round()方法只在数值上大于等于25.5时返回26;否则返回25。
3,最后,Math.floor()对所有介于25和26(不包括26)之间的数值都返回25。