javascript-如何覆盖Mac OS的快捷方式?

我正在开发一个Web应用程序,用于侦听按键事件的组合,例如CTRLB.
我的问题是在Mac上监听CTRL ArrowKey.这在PC上可以正常工作,但在Mac上,这是在台式机之间切换的快捷方式,因此不会触发第二个按键事件(箭头键).
有什么方法可以覆盖Mac OS的CTRL箭头快捷方式,或在Mac上的JavaScript中侦听此组合吗?

document.onkeydown = listenForSecondKey;

function listenForSecondKey(event){
    console.log(event.key);
    event.preventDefault ? event.preventDefault() : (event.returnValue=false);
    if ((holdDown1 == true)&&(holdDown2 == true)){
        if (event.which == push){
            document.removeEventListener("keydown",keyGoingDown);
            if (postcondition){
                showPostCondition();
            }
            else{
                killTable();
                correctAnswerSubmitted(); 
            }
        }
        else{
            killTable();
            incorrectAnswerSubmitted();
        }
        holdDown1 = false;
        holdDown2 = false;
    }
}


function keyGoingDown(event){
    event.preventDefault ? event.preventDefault() : (event.returnValue=false);

        if (event.key == hold1) {
            holdDown1 = true;
        }
        else if (event.key == hold2){
            if (holdDown1 == true){
                    holdDown2 = true;
                }
        }
    else{
        //Wrong,but also shouldn't detect push down 
    }

}

document.addEventListener("keydown",keyGoingDown);
最佳答案
我认为这可能会产生想法.

document.addEventListener('keydown',(e) => {

    if ( e.key === 'ArrowLeft' ) {
        e.preventDefault() // Stop other operations
    }

})

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ "TOC" 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...