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

为什么我的计时器就使用了一次,不应该是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>


正在回答

2 回答

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

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

weibo_迷茫_70948_0 提问者

嗯,谢谢
2018-09-26 回复 有任何疑惑可以回复我~

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


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

举报

0/150
提交
取消

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

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