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

数字为0时,方法里的clearTimeout不能让计数器停下来,而用点击按钮调用clearTimeout就能停下来。

<!DOCTYPE html>

<html>

 <head>

  <title>浏览器对象</title>  

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

 </head>

 <body>

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

  <span id="second" >5</span>

  <span >秒后回到主页</span>

  <a href="javascript:history.back();">返回</a>

  <input type="button" value="停" onclick="stop()"/>

  <script type="text/javascript">  

   var i=5;

   var int;

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

   function count(){

     i--;

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

     if(i==0){

        clearTimeout(int);

        window.location.assign("http://www.imooc.com/");

     }

     int=setTimeout("count()",1000);

     

   }

   setTimeout("count()",1000);

   function stop(){

     clearTimeout(int);

   }

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

   

 </script> 

</body>

</html>


正在回答

2 回答

if(i==0){
    clearTimeout(int);
    window.location.assign("http://www.imooc.com/");
}else {
    int=setTimeout("count()",1000);
}

应该加个判断才行。

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

春天的雪 提问者

谢谢,忘加else了
2018-05-25 回复 有任何疑惑可以回复我~

不是停住了么。

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

举报

0/150
提交
取消

数字为0时,方法里的clearTimeout不能让计数器停下来,而用点击按钮调用clearTimeout就能停下来。

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