js數字轉成金額格式

2022-08-14 04:24:12 字數 474 閱讀 4964

1.方法展示

//將數字轉換成金額顯示

function

tomoney

(num)

2.方法說明

num = num.tofixed(2);將數字轉成帶有2位小數的字串

num = parsefloat(num)將帶有2位小數的字串轉成帶有小數的數字

num = num.tolocalestring();將帶有2位小數的數字轉成金額格式

3.方法例項

let num = 5262456.2158;

num = tomoney(num);

console.log(num);//列印結果 5,262,456.22

//將數字轉換成金額顯示

function

tomoney

(num)

數字金額轉成大寫中文金額

數字金額轉成大寫中文金額 region 數字金額轉成大寫中文金額 傳入數字字元 如 12121212.232323 public string moneytochinese string strlowermoney switch itemp strupper strupart strupper it...

數字金額轉成中文大字

將金額轉換為漢字 public class converter public static string convert double money string strmoney money.tostring string arrarymoney strmoney.split 整數部分 string...

JS 數字金額轉繁體金額

if 0 1 9 d d test n return 資料非法 var unit 千百拾億千百拾萬千百拾元角分 str n 00 var p n.indexof if p 0 n n.substring 0,p n.substr p 1,2 unit unit.substr unit.length ...