慕码人8056858
惊了,keydown只有聚焦在键盘输入区时才有效,无法输入内容的元素怎么监听键盘按下的事件?全局按键事件你应该绑定在window或者document上, window.onkeydown = function(event){ switch(event.keyCode){ case 38: console.log("上"); break; case 37: console.log("右"); break; } }