JS实现千分位

Posted 傅丹辰cds

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS实现千分位相关的知识,希望对你有一定的参考价值。

<!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实现千分位的主要内容,如果未能解决你的问题,请参考以下文章

js实现金额千分位显示

JS实现千分位

JS实现千分位

转换number为千分位计数形式js

js 数字转千分位 简单点的

请实现一个js脚本,要求做到将数字转化为千分位表示如:1234567转化为1,234,567