摘要:
一、Math.round() 作用:四舍五入返回整数。(返回参数+0.5后,向下取整) Math.round(5.57) //返回6 Math.round(2.4) //返回2 Math.round(-1.5) //返回-1 Math.round(-5.8) //返回-6 二、Math.ceil() 阅读全文
摘要:
Javascript——toFiexed()函数 1. toFixed(n) 限制小数点后位数,四舍五入。n:0~20 。 2. 作用对象必须是number,不能为其他类型。如(8.001).toFixed(2)返回8.00; 3. toFixed(n)返回值是String类型,所有当成数字进行比大 阅读全文