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

为什么我的计时器就使用了一次,不应该是1000,就执行一次吗

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

  <p>操作成功</p>

  <p><span id = "sp">5</span>秒后回到主页</p>

  <a href="">返回</a>

 

  <script type="text/javascript">  

 var i = document.getElementById("sp").innerHTML;

 function time(){

    for(i;i>=0;i--){

    i--;

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

    if(i==0){

         window.open("https://www.imooc.com");

     }

    }

 }

 setInterval(time(),1000);

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


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

   

 </script> 

</body>

</html>


提问者:weibo_迷茫_70948_0 2018-09-25 22:22

个回答

  • zyxx
    2018-09-26 10:35:34
    已采纳

    setInterval(time(),1000);语句中要么用 time,直接引用函数,或用"time()"引用函数。

  • weibo_迷茫_70948_0
    2018-09-25 22:26:03

    <!DOCTYPE html>

    是这个代码

    <html>

     <head>

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

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

     </head>

     <body>

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

      <p>操作成功</p>

      <p><span id = "sp">5</span>秒后回到主页</p>

      <a href="">返回</a>

     

      <script type="text/javascript">  

     var i = document.getElementById("sp").innerHTML;

     function time(){

        

        i--;

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

        if(i==0){

             window.open("https://www.imooc.com");

        }

        

     }

     setInterval(time(),1000);

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


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

       

     </script> 

    </body>

    </html>