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

最佳答案

我不知道这是否是最好的解决方案,但可能会有所帮助:

警告:这不是经过测试的解决方案

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上

关于javascript - 如何创建快捷方式键来调用jquery中的事件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52095924/

10-10 05:19