如何让一个div接收键盘事件?

2024-11-22 23:02:16
推荐回答(2个)
回答1:

document.getElementById("你的div的ID").onkeydown=function (){ //这里写按下键的处理过程}
document.getElementById("你的div的ID").onkeyup=function (){ //这里写弹起键的处理过程}
document.getElementById("你的div的ID").onkeypress=function (){ //这里写按键的处理过程}

回答2:

document.getElementById("box")..onkeydown = function(e){
var e = e||event; //判断兼容
if(e.keyCode==38){ //判断按钮
alert(1);

}
}

onkeyup

松开