toFixed(n),n是保留的小数位数。toFixed是js里面用来保留几位小数且四舍五入的函数。但素,它有bug。
于是呢,我们要重封一个js函数,用Math.round()来处理
Math.round( num * Math.pow( 10,2 ) ) / Math.pow( 10,2 )
但是,这样还是不对,如果保留小数的最后一位是0,那么,不会显示
那么封装一下
var newTofixed = function( num,digital ){
return ( Math.round( num * Math.pow( 10,digital ) ) / Math.pow( 10,digital ) ).toFixed(digital);
}
也可以参考博客:http://www.cnblogs.com/Aladingding/p/5091082.html