javascript toLocaleString的巧妙用法

(123).toLocaleString('zh-Hans-CN-u-nu-hanidec') // “一二三”
(1.23).toLocaleString('zh-Hans-CN', { style: 'percent' }) // “12,300%”
(123).toLocaleString('zh-Hans-CN', { style: 'currency', currency:'CNY' }) // “¥123.00”
(123).toLocaleString('de-DE', { style: 'currency', currency: 'EUR'}) // “123,00 €”
(123).toLocaleString('en-US', { style: 'currency', currency: 'USD' }) // “$123.00”
保留两位小数 Number(num).toLocaleString("en", {
minimumFractionDigits: 2
});

javascript toLocaleString的巧妙用法最先出现在Python成神之路

版权声明:
作者:Mr李
链接:https://www.techfm.club/p/13687.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>