码迷,mamicode.com
首页 > Web开发 > 详细

js数字转换成财务金额

时间:2018-10-18 16:48:02      阅读:809      评论:0      收藏:0      [点我收藏+]

标签:color   function   eal   dex   ==   func   str   substring   count   

function dealNumberToMoney(money){
    var fmtAmt = "";
    if(money&&money!=null){
        money = money.replace(/,/g,"").replace(/,/g,"");
        if(money.indexOf(".")==-1){
            money = money + ".00";
        }
        
        var index = money.indexOf(".");
        var floatValue = money.substring(index+1);
        
        var count = 0;
        for(var i=(index);i>=0;i--){
            fmtAmt = money[i]+fmtAmt;
            if(count==3&&i!=0){
                fmtAmt = "," + fmtAmt;
                count = 0;
            }
            count++;
        }
    }
    
    fmtAmt += floatValue;
    
       return fmtAmt;
}

 

js数字转换成财务金额

标签:color   function   eal   dex   ==   func   str   substring   count   

原文地址:https://www.cnblogs.com/jinzhiming/p/9810052.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!