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

js解决千分符问题[收藏下]

时间:2017-05-06 17:49:53      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:ace   turn   bsp   cti   while   image   问题   style   return   

//js数字千分符处理
function commafy(num) {
  num = num + "";
  var re = /(-?\d+)(\d{3})/
  while (re.test(num)) {
    num = num.replace(re, "$1,$2")
  }
  return num;
}

 

执行下,效果不错,收藏记录

技术分享

 

js解决千分符问题[收藏下]

标签:ace   turn   bsp   cti   while   image   问题   style   return   

原文地址:http://www.cnblogs.com/jshare/p/6817270.html

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