我正在使用此代码捕获键盘按键事件:
$(document.body).keypress(function(e){
console.log("captured: " + e.which);
});
在Chrome上,当用户按 CTRL + R 时,我会收到charcode 18。
在Firefox上,我得到114,换句话说只有 r 而没有 CTRL 。
如何在Firefox上捕获CTRL +事件?我希望在不使用任何转换表的情况下收到正确的字符代码。
答案 0 :(得分:0)
答案 1 :(得分:0)
$(document).on('keydown', function(e){
console.log("captured: " + e.which);
});