$('input.ipt.form-control.gotoPageNo').keyup(function() { var c = $(this); if (/[^\d]/.test(c.val())) { //替换非数字字符
var temp_amount = c.val().replace(/[^\d]/g, '');
$(this).val(temp_amount);
}
});以上代码实现了只能输入数字,如何再加以限制输入的范围呢?不是说几位数,是具体的数字,如1到35之间的数字?
添加回答
举报
0/150
提交
取消