取消 HTML 页面中的 keydown?

发布于 2024-09-05 03:25:01 字数 40 浏览 4 评论 0原文

如何取消 HTML 页面中键盘上按钮的按下。

谢谢

How can I cancel the keydown of a button on the keyboard in an HTML page.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

生寂 2024-09-12 03:25:01

它比目前描述的要复杂一些,请参阅 Quirksmode.org

您无法阻止 Opera 中默认的 onkeydown

在 Opera 中,请改用 onkeypress

It's somewhat more complicated than described so far, see Quirksmode.org:

You cannot prevent the default onkeydown in Opera.

In Opera, use onkeypress instead.

一身软味 2024-09-12 03:25:01

处理 onkeydown 事件并返回 false;

Handle the onkeydown event and return false;

哀由 2024-09-12 03:25:01

试试这个

<input type="button" onkeydown="return false;" />

Try this

<input type="button" onkeydown="return false;" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文