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(向下取整)
1.取整// 丢弃小数部分,保留整数部分
parseInt(5/2)// 2
2.向上取整
// 向上取整,有小数就整数部分加1
Math.ceil(5/2)// 3
3.向下取整
// 向下取整,丢弃小数部分
Math.floor(5/2)// 2
4四舍五入
// 四舍五入
Math.round(5/2)// 3