js 四舍五入

//四舍五入
var moneyFormatRound = function(price) {
    with(Math) {
        price =  round(price*pow(10,2))/pow(10,2); 
    }
    return new Number(price).toFixed(2);
}

我这边的需求四舍五入到分,所以用了Math的round函数。

不晓得有没有更好的方法。

你可能感兴趣的:(js 四舍五入)