JS格式化数字(每三位加逗号)
方法一
1 | function toThousands(num) { |
改良版
1 | function toThousands(num) { |
方法二
1 | function toThousands(num) { |
方法三
1 | function toThousands(num) { |
方法四
1 | function toThousands(num) { |
推荐
1 | function toThousands(num) { |