我有这个脚本工作,但它允许字母并且不允许键盘顶部的数字,但由于某种原因它允许数字键盘。我怎么做,所以它只允许小写字母?
function isAlphaKey(evt){
var charCode = (evt.which) ? evt.which : event.keyCode;
if ((charCode==231 || charCode==199) || (charCode==241 || charCode==209) ||(charCode==8 || charCode==32) || ( (charCode >= 65 && charCode <= 90) || (charCode >= 97 && charCode <= 122) ) ) {
return true;
}
else {
return false;
}
}