javascript之對系統的toFixed()方法的修正

來源:互聯網
上載者:User

0.009.toFixed(2)本該返回0.01的結果,可它卻返回了一個0.00,這是這個方法的一個BUG,且這個方法對用戶端的JS版本要求有點偏高,至少在IE5.0裡這個方法用不起來,所以我寫了上面的一段修正代碼,並且還解決了這個BUG的問題。若是想完全使用這個自訂的方法替代那個有BUG的系統方法的話,只需要去掉最外層的那個 if 判斷就可以了。

//by meizz

if(typeof(Number.prototype.toFixed)!="function")
{

Number.prototype.toFixed=function (d)
{

var s=this+"";
if(!d)d=0;
if(s.indexOf(".")==-1)s+=".";
s+=new Array(d+1).join("0");
if(new RegExp("^(-|\\+)?(\\d+(\\.\\d{0,"+(d+1)+"})?)\\d*$").test(s))
{

var s="0"+RegExp.$2,pm=RegExp.$1,a=RegExp.$3.length,b=true;
if(a==d+2){
a=s.match(/\d/g);
if(parseInt(a[a.length-1])>4)
{

for(var i=a.length-2;i>=0;i--){
a[i]=parseInt(a[i])+1;
if(a[i]==10){
a[i]=0;
b=i!=1;

}else break;

}

}
s=a.join("").replace(new RegExp("(\\d+)(\\d{"+d+"})\\d$"),"$1.$2");

}if(b)s=s.substr(1);
return (pm+s).replace(/\.$/,"");

}return this+"";

};

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.