js监听键盘事件

document.onkeydown = function(e){
                var key = window.event.keyCode;
                console.log(key);

                // if(key == 13){
                //    console.log(1);
                // }
            }    

按下抬起时触发

onkeyup

你可能感兴趣的:(js监听键盘事件)