var money=0.00542;//0.006; alert(Number(money).toFixed(2)); //0.00
round 方法
返回与给出的数值表达式最接近的整数。
Math.round(number) 必选项 number 参数是要舍入到最接近整数的值。
var money=0.00542;//0.006; alert(Number(money).toFixed(2)); function round2(number,fractionDigits){ with(Math){ return round(number*pow(10,fractionDigits))/pow(10,fractionDigits); } } alert(round2(money,2));//0.01说明
否则,round 返回小于等于 number 的最大整数。