FormatNum(str:any){
? ? ? str= ''+str;
? ? ? var newStr = "";
? ? ? var count = 0;
? ? ? if(str.indexOf(".")==-1){
? ? ? ? for(var i=str.length-1;i>=0;i--){
? ? ? ? ? if(count % 3 == 0 && count != 0){
? ? ? ? ? ? newStr = str.charAt(i) + "," + newStr;
? ? ? ? ? }else{
? ? ? ? ? ? newStr = str.charAt(i) + newStr;
? ? ? ? ? }
? ? ? ? ? count++;
? ? ? ? }
? ? ? ? str = newStr + ".00"; //自動補(bǔ)小數(shù)點(diǎn)后兩位
? ? ? ? // str = newStr;
? ? ? }else{
? ? ? ? for(var i = str.indexOf(".")-1;i>=0;i--){
? ? ? ? ? if(count % 3 == 0 && count != 0){
? ? ? ? ? ? newStr = str.charAt(i) + "," + newStr;
? ? ? ? ? }else{
? ? ? ? ? ? newStr = str.charAt(i) + newStr; //逐個字符相接起來
? ? ? ? ? }
? ? ? ? ? count++;
? ? ? ? }
? ? ? ? str = newStr + (str + "00").substr((str + "00").indexOf("."),3);
? ? ? }
? ? ? return str;
? ? }