方法一:写一个简单的了函数

//四舍五入函数
var round = function (num, digits) {    
    return Math.round(num * Math.pow(10, digits)) / Math.pow(10, digits);
};

round(0.455, 2);     // 结果:0.46



方法二:为Number增加一个round方法

//为Number类型增加round方法 
delete Number.prototype.round; 
Number.prototype.round=function (digits) {    
    var num = this;
    return Math.round(num * Math.pow(10, digits)) / Math.pow(10, digits);
};

0.455.round(2);   //结果:0.46

 


本文转载:CSDN博客