验证金额11位,整数最多8位小数两位

  作者:chrispy

//2.验证金额11位,整数最多8位小数两位$('body').on('blur', '.moneyFloat',function () {var num = $(this).val();var exp = /^([1-9][d]{0,7}|0)(.[d]{1,2})?$/;if (num != '' && !exp.test(num)) {$(this).addClass('error-

//2.验证金额11位,整数最多8位小数两位

$('body').on('blur', '.moneyFloat',function () {

var num = $(this).val();

var exp = /^([1-9][d]{0,7}|0)(.[d]{1,2})?$/;

if (num != '' && !exp.test(num)) {

$(this).addClass('error-input');

} else {

$(this).removeClass('error-input');

}

})


有用  |  无用

猜你喜欢