为什么倒计时到负数才跳转?

来源:8-17 编程练习

慕村7229740

2018-10-08 11:38

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

  <h1>操作成功</h1>

  <span id="count">5</span>

  <span>秒后返回主页 </span>

  <a href="javascript:myback()">返回</a>

 

 

  <script type="text/javascript">  

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

   var num=5;

   function startCount(){

       document.getElementById("count").innerHTML=num;

       num--;

       setInterval("startCount()",1000);

       if (num==0){

           location.assign("https://www.imooc.com/");

       }

   }

   startCount();

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

   function myback(){

       window.history.back();

   }


写回答 关注

1回答

  • 紫鸢_紫鸢
    2018-10-09 10:16:51

    因为你把setInterval("startCount()",1000); 写在startCount()函数里面了.......

    他多执行了一次

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题