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

js将人名币数字格式转换为为美元数字格式

时间:2019-09-02 17:12:54      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:div   string   输出   数字   千分位输出   highlight   千分位   class   转换   

var num = 123456789; 
1.格式化为千分位输出 num.toLocaleString()
//"123,456,789" 
2.格式化为千分位带$符号输出 
num.toLocaleString("en-US",{style:"currency",currency:"USD"})
//"$123,456,789.00" 
3.格式化为带¥符号输出 
num.toLocaleString("zh-Hans-CN",{style:"currency",currency:"CNY"})
//"¥123,456,789.00"

  

js将人名币数字格式转换为为美元数字格式

标签:div   string   输出   数字   千分位输出   highlight   千分位   class   转换   

原文地址:https://www.cnblogs.com/zgdawdl/p/11447422.html

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