使用 JavaScript/HTML5 获取浏览器热键设置?
有没有办法使用 JavaScript(或 HTML5,如果需要)来检索浏览器的当前热键设置?请注意,我并不是试图修改设置,只是试图检索它。
Is there any way to use JavaScript (or HTML5 if necessary) to retrieve the browser's current settings on hotkeys? Notice that I am not trying to modify the settings, just trying to retrieve it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
遗憾的是,最好的选择是使用浏览器嗅探,并编译已知热键的列表。
例如,使用 jQuery 客户端插件,类似:
当然,这有点像 PITA。
Sadly, your best bet for this is to use browser sniffing, and compile a list of known hotkeys.
For example, using the jQuery Client plugin, something like:
Of course, this is a bit of a PITA.