这是我的 JS
function validate(evt) {
var theEvent = evt || window.event;
var key = theEvent.keyCode || theEvent.which;
key = String.fromCharCode( key );
var regex = /[0-9]/;
if( !regex.test(key) ) {
theEvent.returnValue = false;
if(theEvent.preventDefault) theEvent.preventDefault();
}
}
该脚本仅适用于input
标签,只能输入数字。
它在谷歌浏览器上运行良好,但在 Firefox 15.0 退格、删除、箭头键不起作用
这是Firefox的错误,还是我的脚本有问题?