此代码负责防止用户输入非数字字符,例如除数字 [0-9] 之外的任何 ascii。在 IE 中运行良好,但在 Firefox 和 Chrome 中运行良好。非常感谢任何帮助和建议。
谢谢
'oKeyPress': function (e) {
e = e || window.event;
var charCode = (navigator.appName == "Netscape") ? e.which : e.keyCode;
return !(charCode > 31 && (charCode < 48 || charCode > 57));
}