不多说,看例子:
<html>
<head>
<title></title>
<script type="text/javascript">
//强制只允许输入数字
function CheckNumb() {
//如果要获取发生事件的元素用 window.event.scrElement;
alert("你点击的键为:"+window.event.keyCode);
}
</script>
</head>
<body>
<input type="text" class="disableIme" onpaste="return false" />
</body>
</html>

相关文章:

  • 2022-12-23
  • 2022-02-11
  • 2021-09-13
  • 2022-12-23
  • 2022-12-23
  • 2021-10-15
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-05
  • 2022-03-07
相关资源
相似解决方案