1

我从事输入验证(仅来自 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();
  }
}

我知道我应该调整正则表达式,但我不太确定如何......需要帮助

非常感谢提前..

4

1 回答 1

1

一切正常..数字输入+工作bacspace

    function validate(evt) {
  var theEvent = evt || window.event;
  var key = theEvent.keyCode || theEvent.which;
  key = String.fromCharCode( key );
  **var regex = /^[0-9_\b]+$/;**
  if( !regex.test(key) ) {
    theEvent.returnValue = false;
    if(theEvent.preventDefault) theEvent.preventDefault();
  }
}
于 2013-05-10T11:47:20.880 回答