自动跳转

来源:8-17 编程练习

慕晨曦

2014-11-12 10:05

、、、

写回答 关注

1回答

  • 奔跑的蜗牛丶
    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>


JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题