我有隻允許使用數字的文本字段。但我還有一個要求。我想在用戶輸入20以下和50以上的數字時驗證字段。我可以知道是否有任何方法可以實現此目的。下面是相同的簡單代碼。如何使用jQuery在文本字段中允許20-50的數字
HTML
<input type="text" name="marksdif" class="form-control" id="marksdif" onkeypress="return isNumber(event)" placeholder="Enter Marks to be Compared" autocomplete="off" >
的jQuery
function isNumber(evt) {
evt = (evt) ? evt : window.event;
var charCode = (evt.which) ? evt.which : evt.keyCode;
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
return false;
}
return true;
}
也許這將幫助http://stackoverflow.com/questions/995183/how-to-allow-only-numeric-0-9-in-html-inputbox-using- jquery – AVI