抓住“命令”R在 Safari 中使用 JQuery
我需要拦截 Safari 中的浏览器重新加载功能(我知道这通常不是人们应该做的事情,但在我的情况下这是有意义的)。
对于 Windows,我只需这样做:
$(document).keydown(function(event) {
if ( event.which == 116 ) {
restart();
return false;
}
});
我是否需要使用 JQuery 插件同时捕获两个键,或者 这是否已经以某种形式在 JQuery 中实现?
另外,Mac 下的键码是否相同因为它们在窗户下面? (“Command”是键码“17”,“r”是“19”?)还是命令键是“55”,“r”是“15”?
(使用此来源:http://boredzo.org /blog/archives/2007-05-22/virtual-key-codes
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有一个 Jquery 插件可以捕获键盘事件,最好的部分是它允许您使用按键事件的名称来处理它们。就像如果你想捕获 CTRL + R 那么你不必担心关键代码,插件会自行处理这个问题。
在这里查看:https://keithamus.github.io/jwerty/
There is a Jquery plugin to capture keyboard events and th best part is that it will allow you to handle the key events with their names. like if you want to capture CTRL + R then you need not to worry about the key codes, the plugin will handle this by itself.
Check it out here: https://keithamus.github.io/jwerty/
我想我不需要使用插件就可以解决这个问题。稍后我会验证它是否也适用于 Mac(我没有 Mac),但它适用于 PC 上的 CTRL+R:
这个帮助我实现了这一目标:jQuery .keypress() 可以同时检测多个按键吗?
I think I figured it out without having to use a plugin. I'll verify if it also works on the Mac later (I don't own one), but it works for CTRL+R on a PC:
This one helped me get there: Can jQuery .keypress() detect more than one key at the same time?
您可以使用以下代码在 Mac 上捕获 ⌘ + R:
.metaKey 代表 Mac 上的 ⌘,< PC 上的 kbd>⊞ 键。
You can catch ⌘ + R on Mac using the next code:
.metaKey stands for ⌘ on Mac and ⊞ key on PC.