// 数字千分位
function format(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');

}
// 调用
format(188888); // 188,888
format(188888.88); // 188,888.88