Number.prototype.toPercent = function(n){n = n || 0;return ( Math.round( this * Math.pow( 10, n + 2 ) ) / Math.pow( 10, n ) ).toFixed( n ) + '%';}
var A=0.358975, B=0.25554;
?alert([A, A.toPercent(3), B, B.toPercent()].join('\n'));
详细解决方案
js兑现小数转百分比
热度:468 发布时间:2012-09-22 21:54:54.0
相关解决方案