$("#money").keyup(function() { var reg = $(this).val().match(//d+/.?/d{0,2}/); var txt = ''; if (reg != null) { txt = reg[0]; } $(this).val(txt); var v = $(this).val(); if (//d+/.+/d{0,2}/.test(v)) { if (v > 99999999.99) { $(this).val(99999999.99); } } else { if (v > 0) { reg = $(this).val().match(/(^[1-9]+[0-9]*)+/); txt = ''; if (reg != null) { txt = reg[0]; } v = txt; $(this).val(v); } if (v > 99999999) { $(this).val(99999999); } } }).change(function () { $(this).keypress(); var v = $(this).val(); if (//.$/.test(v)) { $(this).val(v.substr(0, v.length - 1)); } });
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/14045.html