格式化数字

function number_format(Num){
2 return new String(Num).replace(/\d+?(?=(?:\d{3})+$)/img, "$&,");
3 }

你可能感兴趣的:(格式化数字)