js千分位加逗号
Posted 邢帅杰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js千分位加逗号相关的知识,希望对你有一定的参考价值。
code
function toThousands(num) {
var numArr = num.split(‘.‘);
num = numArr[0];
var result = ‘‘;
while (num.length > 3) {
result = ‘,‘ + num.slice(-3) + result;
num = num.slice(0, num.length - 3);
}
if (num) { result = num + result; }
return result + ‘.‘ + numArr[1];
}
以上是关于js千分位加逗号的主要内容,如果未能解决你的问题,请参考以下文章