Math.ceil():向上取整 Math.floor():向下取整 Math.round():四捨五入 需要注意的如:Math.ceil(-1.6) = -1.0; Math.round(-1.5) = -1;# round(-1.6) = -2;