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

为什么结果不会跳转,还回出现负秒数???真是搞不懂

  <script type="text/javascript">  

 

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

    var  time=document.getElementById("sec").innerHTML;

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

   function count(){

       time--;

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

       if(time==0)

       {

           location.assign("www.imooc.com");

       }

  }

  setInterval("count()",1000);

  function back(){

      window.history.back();

  }

 </script> 


正在回答

2 回答

你这个代码没问题啊,我复制下来测试了,除了不能跳转成功原因是网址没加"http://"

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

<script type="text/javascript">  

    var  time=5; //直接来个数字

   function count(){

       time--;

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

       if(time==0)

       {

           location.href="www.imooc.com";

       }

  }

 setInterval("count()",1000);

 </script> 


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

举报

0/150
提交
取消

为什么结果不会跳转,还回出现负秒数???真是搞不懂

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