1. 程式人生 > >組合鍵監控

組合鍵監控

沒什麼多說的

document.onkeydown = function () {
        var oEvent = window.event;
        if (oEvent.keyCode == 13 && oEvent.ctrlKey) {
            console.log("你按下了ctrl+enter");
        }else if(oEvent.keyCode == 13){
            console.log(2222222222)
        }
    }

jQuery的實現方法還沒找到