1.Math.round():四舍五入
根据“round”的字面意思“附近、周围”,可以猜测该函数是求一个附近的整数,看下面几个例子就明白。
2.Math.ceil():向上取整
根据“ceil”的字面意思“天花板”去理解;
3.Math.floor():向下取整
根据“floor”的字面意思“地板”去理解;
看下面一些例子就明白了
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
但需要注意的一点是,假如值是负数,结果要注意哦!
alert(Math.ceil(-25.9)); //-25 alert(Math.ceil(-25.5)); //-25 alert(Math.ceil(-25.1)); //-25 alert(Math.round(-25.9)); //-26/////////////// alert(Math.round(-25.5)); //-25 alert(Math.round(-25.1)); //-25///////////////// alert(Math.floor(-25.9)); //-26 alert(Math.floor(-25.5)); //-26 alert(Math.floor(-25.1)); //-26