标签:
http://heeroluo.net/article/detail/115
方法六
// 方法六 function toThousands(num) { return (num || 0).toString().replace(/(\d)(?=(?:\d{3})+$)/g, ‘$1,‘); }
js从千分位格式
原文地址:http://www.cnblogs.com/wangjunwei/p/4939346.html