js 中的 Math.ceil() Math.floor Math.round()

Posted CNundefined

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 中的 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.5)); //25
alert(Math.floor(25.1)); //25

 

对于所有介于25和26(不包括26)之间的数值,Math.ceil()始终返回26,因为它执行的是向上舍入。

Math.round()方法只在数值大于等于25.5时返回26;否则返回25。

最后,Math.floor()对所有介于25和26(不包括26)之间的数值都返回25。

 

以上是关于js 中的 Math.ceil() Math.floor Math.round()的主要内容,如果未能解决你的问题,请参考以下文章

js中的Math

js中的除法

js中Math.roundparseIntMath.floor和Math.ceil小数取整总结(转)

js中Math.roundparseIntMath.floor和Math.ceil小数取整总结

js的向上取整(Math.ceil)向下取整(Math.floor)四舍五入(Math.round)

JS.Math常用方法大全