js实现小数转百分比

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),
相关文章
相关标签/搜索