如何创建快捷方式键来调用jquery中的事件?

时间:2018-08-30 11:28:24

标签: javascript jquery

如何创建用于在jQuery中调用事件的快捷键(例如,如果我按下Alt + A,然后调用按钮单击功能。但是如果是Alt + V + A,则不是)

1 个答案:

答案 0 :(得分:1)

我不知道这是否是最好的解决方案,但也许有帮助:

警告:这不是经过战斗验证的解决方案

var pressedKeys = [];

document.addEventListener('keydown', function(e) {  
    if(e.altKey){
        var idx = pressedKeys.indexOf(e.which);
        if(idx < 0) pressedKeys.push(e.which);
    }
});

document.addEventListener('keyup', function(e) {
    // 65 means A
    if (e.altKey && e.which == 65){
        if(pressedKeys.length === 2)
            console.log("Alt + A shortcut combination was pressed");  
    }

    var idx = pressedKeys.indexOf(e.which);
    if(idx > -1) pressedKeys.splice(idx, 1);
});

您可以看到上面的代码,here 在codepen上