1

我找到了可以在 IE 和 Chrome 中运行的功能,但在 Mozilla 中它不起作用。也许有人知道为什么它在 Mozilla 中不起作用?

function on(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

0 回答 0