js键盘事件的keyCode

document.onkeyup = function(event){ 
   
  var event = event || window.event; 
  alert(event.keyCode); 
}