标签:gnu color float class style add padding oat 转换
// 金额格式转换 function paddingNum(value) { if (value && value != null) { var reg = /^(-)?[0-9]+.?[0-9]*$/ if (!reg.test(value)) { return; } value = parseFloat(value).toFixed(2) value = String(value) const left = value.split(".")[0] const right = value.split(".")[1] const temp = left.split("").reverse().join("").match(/(\d{1,3})/g); return (Number(value) < 0 ? "-" : "") + temp.join(",").split(‘‘).reverse().join("") + "." + right } }
标签:gnu color float class style add padding oat 转换
原文地址:https://www.cnblogs.com/lskzj/p/13221025.html