我从事输入验证(仅来自 kaybord 的数字输入)。哪个工作正常,但问题是我不能使用退格按钮。删除按钮效果很好。
我的代码:
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();
}
}
我知道我应该调整正则表达式,但我不太确定如何......需要帮助
非常感谢提前..