当用户按下键盘快捷键时,我需要激活弹出窗口。你能告诉我这是怎么做到的吗?
谢谢!
答案 0 :(得分:1)
这将是一个javascript函数。看看onkeypress或onkeyup。
最好的选择可能是jQuery:
$(document).keyup(function(e) {
if (e.keyCode == x) {
//do something, i.e. alert('popup');
}
});
A few of the key codes:
Enter 13
Up arrow 38
Down arrow 40
Left arrow 37
Right arrow 39
Escape 27
Spacebar 32
Ctrl 17
Alt 18
Tab 9
Shift 16
Caps-lock 20
Windows key 91
Backspace 8
Home 36
End 35
Insert 45
Delete 46