黑马程序员技术交流社区

标题: javascript之捕获事件 [打印本页]

作者: Dreamcomesture    时间: 2016-6-15 15:50
标题: javascript之捕获事件
问题:捕获document对象的keydown事件,再通过调用document.writeln函数输出当前按键

思路1:捕获keydown事件,然后从该事件的which属性中获得当前按键Unicode格式的键码



  1. window.onload=function{
  2.     if ( document.addEventListener ){
  3.           document.addEventListener( "keydown", getKey , false );
  4.     }else if ( document.attachEvent ){
  5.           document.attachEvent( "keydown" getKey );
  6.      }
  7. }

  8. function getKey( event ){
  9.      var theEvent = event ? event : window.event;
  10.      document.writeln ( theEvent.which );
  11. }

复制代码

作者: wzg682735    时间: 2016-6-15 19:16
学习了,虽然还不太懂




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2