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

为什么计时器到4后直接打开页面,不继续读到0在打开页面

<!DOCTYPE html>
<html>
 <head>
  <title>浏览器对象</title>  
  <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>   
 </head>
 <body>
  <!--先编写好网页布局-->
  <p>操作成功</p>
  <p><span id="second">5</span>秒后返回主页&nbsp;<a href="http://www.baidu.com">返回</a></p>
 
  <script type="text/javascript">  
 var num=5;
 var i;
 function myTime(){
      num--;
  document.getElementById("second").innerHTML=num;
  if(num=0){
   clearTimeout(i-1);
  window.location.href =  "http://www.imooc.com/";
   }
  i=setTimeout("myTime()",1000)
  }
 setTimeout("myTime()",1000)
 
   //获取显示秒数的元素,通过定时器来更改秒数。

   //通过window的location和history对象来控制网页的跳转。
   
 </script> 
</body>
</html>


正在回答

3 回答

第18行 if=0改成if==0

=是赋值的意思

==是等于的意思


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

我要吃冰激凌 提问者

非常感谢!
2016-03-11 回复 有任何疑惑可以回复我~

如图 第18行 中的 if条件 是赋值语句  改成  ==  于

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

<!DOCTYPE html>

<html>

 <head>

  <title>浏览器对象</title><meta charset="utf-8" />  

  <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>   

 </head>

 <body>

  <!--先编写好网页布局-->

  <p>操作成功</p>

  <p><span id="second">5</span>秒后返回主页&nbsp;<a href="http://www.baidu.com">返回</a></p>

  

  <script type="text/javascript">  

 var num=5;

 var i;

 function myTime(){

      num--;

  document.getElementById("second").innerHTML=num;

  if(num==0){//注意这里

   clearInterval(i);

  window.location.href =  "http://www.imooc.com/";

   }

 // i=setTimeout("myTime()",1000)

  }

 i=setInterval(myTime,1000)

  

   //获取显示秒数的元素,通过定时器来更改秒数。

 

   //通过window的location和history对象来控制网页的跳转。

    

 </script> 

</body>


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

举报

0/150
提交
取消

为什么计时器到4后直接打开页面,不继续读到0在打开页面

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