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

为什么执行到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>


正在回答

1 回答

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

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

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

血蝴蝶 提问者

是不是因为我的 setTimeout("time()", 1000);在函数外面,所以执行一次就停止了?
2015-12-07 回复 有任何疑惑可以回复我~
#2

木子舟义 回复 血蝴蝶 提问者

是的。
2015-12-07 回复 有任何疑惑可以回复我~
#3

血蝴蝶 提问者

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

举报

0/150
提交
取消

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

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