到这一步为什么点击开始按钮没有反应?求帮忙找找问题出在哪里

来源:4-4 [DOM事件] 抽奖系统(上)

风到这里就是粘

2017-07-29 21:58

<!doctype html>
<html>
 <head>
   <title>抽奖</title>
   <meta charset="utf-8">
   <style type="text/css">
       *{margin:0;padding:0;}
        #title{
            width:380px;height:70px;line-height:70px;
            color:red;font-size:24px;font-weight:bold;
            text-align:center;margin:0 auto;
        }
        .btns{width:190px;height:30px;margin:0 auto;overflow:hidden;}
        .btns span{
            display:block;width:83px;height: 28px;line-height: 28px;background: #003366;
            color: #fff;font-size: 14px;
            border: 1px solid #003366;border-radius: 7px;
            text-align: center;margin: 0 5px;
            float: left;
        }
   </style>
 </head>
 <body>
    <div id="title" class="title">开始抽奖啦!</div>
    <div class="btns">
       <span id="play">开 始</span>
       <span id="stop">停 止</span>
    </div>

    <script type="text/javascript">
            var data=['Phone5','Ipad','三星笔记本','佳能相机','惠普打印机','谢谢参与','50元充值卡','1000元超市购物券'];
            var timer=null;
            window.onload=function(){
                var title=document.getElementById('title'),
                    play=document.getElementById('play'),
                    stop=document.getElementById('stop');
                    play.onlick=playFun;
                    stop.onlick=stopFun;
            };
            function playFun(){
                var play=document.getElementById('play');
                
                timer=setInterval(function(){
                    // var index=Math.floor(Math.random()*data.length);
                    // title.innerHTML=data[index];
                    console.log('hello');
                },50);
                play.style.background="#999";
            }
            function stopFun(){
                clearInterval(timer);
            }
            


    </script>
 </body>
</html>


写回答 关注

1回答

  • KloseZ
    2017-07-31 11:32:02
    已采纳

    第38行 应该是play.onclick,你写成了onlick,少了个c。

    39行同理

    风到这里就是... 回复KloseZ

    明白了,谢谢!

    2017-07-31 17:13:56

    共 3 条回复 >

DOM事件探秘

DOM事件?本课程会通过实例来给小伙伴们讲解如何使用这些事件

99545 学习 · 1197 问题

查看课程

相似问题