// 校验保留两位小数金额 export function isMoney(money) { var reg = /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/ if (reg.test(money)) { return true } else { return false } }
原文地址:https://www.cnblogs.com/lst619247/p/10668904.html
时间: 2024-10-30 07:12:20