js 千分位(分转元,万转元...)
2021-04-11 15:25
标签:return ons color func nbsp col ret ice cti js 千分位(分转元,万转元...) 标签:return ons color func nbsp col ret ice cti 原文地址:https://www.cnblogs.com/fanqiuzhuji/p/12411198.html //千分位 (万转元)
function price(a){
var num = Number(a);
if(!num){//等于0
return num+‘.00‘;
}else{//不等于0
num=num*10000;//万到元(*修改此处,可灵活使用)
num+=‘‘;//转成字符串
var reg=num.indexOf(‘.‘) >-1 ? /(\d{1,3})(?=(?:\d{3})+\.)/g : /(\d{1,3})(?=(?:\d{3})+$)/g;//千分符的正则
console.log(num.indexOf(‘.‘)>-1)
return num.replace(reg, ‘$1,‘)//千分位格式化
}
}
price(1)//10,000
上一篇:01-js的声明和变量学习
文章标题:js 千分位(分转元,万转元...)
文章链接:http://soscw.com/index.php/essay/74314.html