1.丢弃小数部分,保留整数部分 eg:parseInt(5/2)
2.向上取整,有小数就整数部分加1 eg:Math.ceil(5/2)
3.四舍五入. eg:Math.round(5/2)
4.向下取整 eg:Math.floor(5/2)
举例: aa=parseInt(5/2)
alert("取整"+aa)//2(丢掉小数部分)
bb=Math.ceil(5/2) alert("ceil"+bb)//3(向上取整)
cc=Math.round(5/2)alert("round"+cc)//3(四舍五入)
dd=Math.floor(5/2)alert("floor"+dd)//2(向下取整)
javascript取整数的方法如下:Math.round(num)四舍五入
Math.floor(num)小于等于num的整数
Math.ceil()大于等于num的整数
parseInt(num) 小于等于num的整数,与floor的区别是parseInt参数可以是string类型,如'5abc'返回5。