event 事件 keyCode
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script>
window.onload = function(){
document.onkeydown = function(ev){
var oEvent = ev || event;
alert(oEvent.keyCode);
}
}
</script>
</head>
<body>
</body>
</html>

浙公网安备 33010602011771号