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

JS实现千分位

时间:2019-12-12 16:33:59      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:val   tps   replace   nbsp   逗号   set   index   and   div   

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
</head>
<body>
<div id="last3Month">12345555554</div>
<br>
<div id="lastMonth"></div>
<br>
<div id="lastWeek"></div>
<script>
window.onload = function(){
    var last3Month = document.getElementById(‘last3Month‘).innerHTML;
    document.getElementById(‘lastMonth‘).innerHTML = getThousandNum(last3Month);
}
//千分位加逗号 function getThousandNum(val){ var reg = /(?=(?!(\b))(\d{3})+$)/g; return val.indexOf(‘.‘) >= 0 ? val.split(‘.‘)[0].replace(reg,‘,‘) + ‘.‘ + val.split(‘.‘)[1] : val.replace(reg,‘,‘); } </script> </body> </html>

  

 

其他版本的js实现千分位文章:https://www.cnblogs.com/lvmylife/p/8287247.html

JS实现千分位

标签:val   tps   replace   nbsp   逗号   set   index   and   div   

原文地址:https://www.cnblogs.com/fudanchencds/p/12029935.html

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