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

来源:8-17 编程练习

weibo_迷茫_70948_0

2018-09-25 22:22

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


写回答 关注

2回答

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

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

    weibo_...

    嗯,谢谢

    2018-09-26 20:09:30

    共 1 条回复 >

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


JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题