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

为什么定时器不动呢

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

正在回答

1 回答

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

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


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

举报

0/150
提交
取消

为什么定时器不动呢

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