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

计时器的数字怎么没有改变?

<!DOCTYPE html>
<html>
 <head>
  <title>浏览器对象</title>
  <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
 </head>
 <body>
  <!--先编写好网页布局-->
  <h2>操作成功</h2>
  <p><strong id="sd">5</strong>秒后回到主页 <a href="javascript:back()">返回</a></p>

  <script type="text/javascript">

   //获取显示秒数的元素,通过定时器来更改秒数。
    var num = 5 ;
    function startCount(){
        num--;
        document.getElementById("sd").innerHtml = num;
        setTimeout("startCount()",1000);

        if(num==0){
            window.location.assign("http://www.baidu.com");
        }
    }
	startCount();

    function back(){
        window.history.go(-1);
    }


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

 </script>
</body>
</html>


正在回答

1 回答

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

  <h2>操作成功</h2>

  <p><strong id="sd">5</strong>秒后回到主页 <a href="javascript:back()">返回</a></p>

 

  <script type="text/javascript">

 

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

    var sd = document.getElementById("sd");

    var num = 5 ;

    function startCount(){

        num--;

        sd.innerHTML = num;

        setTimeout("startCount()",1000);

 

        if(num==0){

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

        }

    }

    setTimeout("startCount()",1000);

 

    function back(){

        window.history.go(-1);

    }

 

 

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

 

 </script>

</body>

</html>



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

慕旧 提问者

非常感谢!
2017-12-21 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

计时器的数字怎么没有改变?

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