Javascript onkeypress 删除或点

发布于 2024-07-09 14:39:31 字数 51 浏览 10 评论 0原文

有什么办法可以查出用户是否按下了删除键或点? 它在 FireFox 中具有相同的键码。

Is there any way to find out if the user pressed the delete key or dot? It has the same keycode in FireFox.

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

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

发布评论

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

评论(2

汐鸠 2024-07-16 14:39:31

以下是关于键盘事件时浏览器行为的一个很好的概述:

JavaScript 疯狂:键盘事件 < em>(也是最近的:2008 年 7 月 7 日)

向下滚动到“3.2. 角色事件返回的值”,有一个表格显示不同浏览器的操作。

底线是:这取决于情况。

Here is a nice overview regarding browser behavior when it comes to keyboard events:

JavaScript Madness: Keyboard Events (it's quite recent, too: July 7, 2008)

Scroll down to to "3.2. Values Returned on Character Events", there is a table showing what different browsers do.

Bottom line is: It depends.

埋情葬爱 2024-07-16 14:39:31

根据 检测击键,这是可能的,前提是:

  • 您搜索 keyCode ( 8 表示删除)onkeydown/up,并
  • 忽略 onkeypress 和 charCode(特别是如果您考虑到 IE 不会触发按键事件,只会触发按键向上/向下)。

According to Detecting keystrokes, it is possible, provided that:

  • you search for the keyCode (8 for delete) onkeydown/up, and
  • ignore both onkeypress and charCode (Especially if you consider the fact that IE does not fire keypressed event, only key up/down).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文