<script>//页面的任何的位置.按下键盘,获取按键的值document.onkeydown=function (e) {console.log(e.keyCode);//每一个键的keycode都不一样};
</script>
使用案例:
<script>document.addEventListener("keydown",function (e) {switch (e.keyCode){case 37:alert("左") ;break;case 38:alert("上");break;case 39:alert("右");break;case 40:alert("下");break;}},false);
</script>