admin管理员组文章数量:1345096
I'm using the following code to catch when people press Ctrl+Shift+P for my chrome extension:
window.addEventListener("keydown", function(event) {
var modifier = event.ctrlKey || event.metaKey;
if (modifier && event.shiftKey && event.keyCode == 80) {
//code goes here
}
});
I'm hoping the var modifier = event.ctrlKey || event.metaKey;
line means it will catch when Mac users press Cmd-Shift-P but have no Mac puter to test this on. Is it so? Will my hotkey work for Mac users?
Also, what is the keyCode for when the Cmd key goes down and up? Is it 17, the same as for Ctrl?
I'm using the following code to catch when people press Ctrl+Shift+P for my chrome extension:
window.addEventListener("keydown", function(event) {
var modifier = event.ctrlKey || event.metaKey;
if (modifier && event.shiftKey && event.keyCode == 80) {
//code goes here
}
});
I'm hoping the var modifier = event.ctrlKey || event.metaKey;
line means it will catch when Mac users press Cmd-Shift-P but have no Mac puter to test this on. Is it so? Will my hotkey work for Mac users?
Also, what is the keyCode for when the Cmd key goes down and up? Is it 17, the same as for Ctrl?
Share Improve this question edited Apr 28, 2015 at 13:32 Ilya 29.8k19 gold badges119 silver badges161 bronze badges asked Nov 28, 2011 at 21:41 flea whaleflea whale 1,8133 gold badges27 silver badges38 bronze badges 01 Answer
Reset to default 6Keycodes differ in different browsers. Here you can find more information on the subject: How does one capture a Mac's mand key via JavaScript?
On my mac in Chrome I get the keycode 91 but it will differ, in the linked post these are mentioned: Firefox: 224 Opera: 17 WebKit (Safari/Chrome): 91 (Left Apple) or 93 (Right Apple)
There is also a link to this page which tells all about it: http://unixpapa./js/key.html
Your code does work in Chrome on Mac (pressing the cmd+Shift+P).
本文标签: javascriptWill this hotkey work for Mac usersStack Overflow
版权声明:本文标题:javascript - Will this hotkey work for Mac users? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743770502a2536034.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论