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

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

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


提问者:慕旧 2017-12-20 17:06

个回答

  • 慕村608887
    2017-12-20 18:38:09
    已采纳

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