问答详情
源自:8-17 编程练习

为什么定时器不动呢

<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>

  <!--先编写好网页布局-->
  <h1>操作成功</h1>
  <span id="second">5</span>秒后返回主页<a href="javascript::window.history.back()">返回</a>
  <script type="text/javascript"> //获取显示秒数的元素,通过定时器来更改秒数。 //通过window的location和history对象来控制网页的跳转。
   var time= document.getElementById("second").innerHTML;
     
    var i=setInterval("if(time>1){
          document.getElementById('second').innerHTML=--time;
          }else{
              location.assign(
                  "http://www.imooc.com");
          }",1000);
    
  </script>
  </body>
  </html>

提问者:慕粉1551438955 2017-04-26 17:24

个回答

  • 慕勒7123956
    2017-04-26 19:14:30

    你的双引号弄错了,在双引号里面应该用单引号包裹,不过也不推荐这样写setInterval里面的语句,要是封装成一个function,要么直接function(){//这里面写代码}

    function clock()
       {
           num--;
           document.getElementById("first").innerHTML=num;
         if(num==0)
         {
             location.assign("http://www.imooc.com");
         }
         
       }
       setInterval(clock,1000);