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

自动跳转

、、、

提问者:慕晨曦 2014-11-12 10:05

个回答

  • 奔跑的蜗牛丶
    2015-12-14 18:30:30

    </head>

     <body>

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

      <p><b id="second"></b>秒后转到主页&nbsp;&nbsp;<a href=http://www.imooc.com>返回</a>

     

      <script type="text/javascript">  

      var i=5

      

      setInterval(function timer(){ 

          

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

          

          i--;

          if(i==1) {

              location.href="http://www.imooc.com";

          }

      }

     ,1000)

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


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

       

     </script> 

    </body>

    </html>