在窗体中禁用Enter键

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在窗体中禁用Enter键相关的知识,希望对你有一定的参考价值。

added to the head section of the page
  1. function kH(e) {
  2. var pK = e ? e.which : window.event.keyCode;
  3. return pK != 13;
  4. }
  5. document.onkeypress = kH;
  6. if (document.layers) document.captureEvents(Event.KEYPRESS);

以上是关于在窗体中禁用Enter键的主要内容,如果未能解决你的问题,请参考以下文章

C/S权限系统

JavaScript 禁用表单中的Enter键

c# winform中怎么控制enter键?

如何禁用按钮的 Enter 键

如何使用键盘上的 Enter 键登录网站? [关闭]

仅在 _some 字段上通过 Enter 键禁用表单提交