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

为什么执行到4就不动了?

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

  <h3>操作成功</h3>

  <p><span id="second">5</span>秒后回到主页<a href="javascript:back()" target="_blank">返回</a></p>

 

  <script type="text/javascript">  

 

   var sec=document.getElementById("second").innerHTML;//获取显示秒数的元素,通过定时器来更改秒数。

   function time(){

    sec--;

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

    if(sec==0){

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

    }

   }

    setTimeout("time()",1000)

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

   function back{

       history.back()

   }

 </script> 

</body>

</html>


提问者:血蝴蝶 2015-12-07 22:17

个回答

  • 木子舟义
    2015-12-07 22:30:47
    已采纳

    <!DOCTYPE html>
    <html>
    
    <head>
    	<meta charset="utf-8" />
        <title>浏览器对象</title>
        <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    </head>
    
    <body>
        <!--先编写好网页布局-->
        <h3>操作成功</h3>
        <p><span id="second">5</span>秒后回到主页<a href="javascript:back()" target="_blank">返回</a></p>
        <script type="text/javascript">
        var sec = document.getElementById("second").innerHTML; //获取显示秒数的元素,通过定时器来更改秒数。
        function time() {
            sec--;
            document.getElementById("second").innerHTML = sec;
            if (sec == 0) {
                location.assign("http://www.imooc.com")
            }else{
            	setTimeout("time()", 1000);
            }
        }
        time();
            //通过window的location和history对象来控制网页的跳转。
        function back() {
            history.back();
        }
        </script>
    </body>
    
    </html>

    帮你改了一下,如果不明白可以问