js有几种内置的除法函数,分别是parseInt()、Math.ceil()、Math.round()和Math.floor()。
1.丢弃小数部分,保留整数部分
parseInt(7/2)
2.向上取整,有小数就整数部分加1
Math.ceil(7/2)
3.四舍五入
Math.round(7/2)
4.向下取整
Math.floor(7/2)
声明:如需转载,请注明来源于www.webym.net并保留原文链接:http://www.webym.net/jiaocheng/174.html