问答详情
源自:4-5 [DOM事件] 抽奖系统(下)

我自己写的几句,怎么console打印不了键码?

<!doctype html>

<html>

 <head>

   

   <meta charset="UTF-8">

   <script>  

  window.onload=function()

  {

  document.onkeyup=function(event){

  event = event || window.event;  

  console.log(event.keyCode);

};

}


   </script>

    <title>抽奖</title>

 

 

 </head>

 <body>

    <div id="title" class="title">开始抽奖</div>

    <div class="btns">

       <span id="play">开始</span>

       <span id="stop">停止</span>

    </div>

 </body>

</html>


提问者:凉粉拉面 2016-07-11 15:56

个回答

  • 江湖人称李老板
    2016-07-11 16:26:41

    我刚才试了一下,可以的,控制台显示出13了

  • 江湖人称李老板
    2016-07-11 16:14:37

    把<script>标签和里面的内容,放到body标签的最下面