JS中的Math.ceil函数的用法Math.ceil(x)

JS中的Math.ceil函数的用法Math.ceil(x) -- 返回大于等于数字参数的最小整数(取整函数),对数字进行上舍入

Math.floor(x)--返回小于等于数字参数的最大整数,对数字进行下舍入

例如:document.write(Math.ceil(5.99));document.write(Math.ceil(-5.99));

document.write(Math.ceil(1.01));document.write(Math.ceil(-1.01));输出是:6-52-1

摘自http://www.cnblogs.com/songxiangzaiya/articles/1386173.html

你可能感兴趣的:(JS中的Math.ceil函数的用法Math.ceil(x))