按键组合的 ASCII 代码生成

发布于 2024-10-12 09:18:42 字数 196 浏览 2 评论 0原文

我想知道如何获取组合键的 ASCII 码。就像我想处理某些独特的组合键 [alt+ctrl+shift] 的事件一样。

或者您可以告诉我 [alt+Enter]、[ctrl+Enter] 的 ASCII 代码。

I want to know how to get the ASCII code for the combination of keys. Like I want to handle event for some unique key combination [alt+ctrl+shift].

Alternatively can you please tell me the ASCII code for [alt+Enter], [ctrl+Enter].

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

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

发布评论

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

评论(2

过潦 2024-10-19 09:18:42

event 对象上有一些标志,可以告诉您是否已输入 altcontrolshift 键:

if (event.shiftKey) {}
if (event.altKey) {}
if (event.ctrlKey) {}

要获取密钥代码(例如空格),您需要检查event.keycode(13将让您输入

if (event.keyCode === 13){}

There are flags on the event object that tell you if the alt, control or shift keys have been entered:

if (event.shiftKey) {}
if (event.altKey) {}
if (event.ctrlKey) {}

To get the key code (e.g. space), you need to check the event.keycode (13 will get you enter)

if (event.keyCode === 13){}
缺⑴份安定 2024-10-19 09:18:42

从键盘代码到 ASCII 并没有真正的标准映射。也许这个PC键盘扫描代码表会有所帮助。

There aren't really standard mappings from keyboard codes to ASCII. Maybe this PC keyboard scan code table will help.

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