$("#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));
}
});
转载请注明原文地址: https://ju.6miu.com/read-1625.html