Javascript Math ceil()、floor()、r
2017-11-21 本文已影响35人
6659a0f02826
round是四舍五入的,ceiling是向上取整,float是向下取整
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