按键组合的 ASCII 代码生成
我想知道如何获取组合键的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
event
对象上有一些标志,可以告诉您是否已输入 alt、control 或 shift 键:要获取密钥代码(例如空格),您需要检查
event.keycode
(13将让您输入)There are flags on the
event
object that tell you if the alt, control or shift keys have been entered:To get the key code (e.g. space), you need to check the
event.keycode
(13 will get you enter)从键盘代码到 ASCII 并没有真正的标准映射。也许这个PC键盘扫描代码表会有所帮助。
There aren't really standard mappings from keyboard codes to ASCII. Maybe this PC keyboard scan code table will help.