为了账号安全,请及时绑定邮箱和手机立即绑定

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

<!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 回答

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

39行同理

0 回复 有任何疑惑可以回复我~
#1

风到这里就是粘 提问者

谢谢!我按F12看console都没有报错,总不能一行一行代码找问题出在哪吧,所以还想问一下你是怎么找到这个问题的呀?想跟你学习这个怎么找毛病
2017-07-31 回复 有任何疑惑可以回复我~
#2

KloseZ 回复 风到这里就是粘 提问者

拿到你的代码先点击开始试了一下,发现没有效果,console中也没显示你的hello,说明playFun()函数没有执行,所以就先看了一下你代码中的第38行(就是调用playFun()函数的地方),然后就发现问题了
2017-07-31 回复 有任何疑惑可以回复我~
#3

风到这里就是粘 提问者 回复 KloseZ

明白了,谢谢!
2017-07-31 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信