Math.round(num)四舍五入
Math.floor(num)小于等于num的整数
Math.ceil()大于等于num的整数
parseInt(num) 小于等于num的整数,与floor的区别是parseInt参数可以是string类型,如'5abc'返回5。