首页 > 编程 > JavaScript > 正文

HTML页面定时跳转方法解析(2种任选)

2019-11-19 18:20:28
字体:
来源:转载
供稿:网友

有 2 种方法可以实现 html 的定时页面跳转,1、meta refresh 实现。2、JavaScript 实现。

1、通过 meta refresh 实现 3 秒后自动跳转到 http://www.cnblogs.com/wuxibolgs329/ 页面。

<!doctype html> <html>   <head>      <meta charset="utf-8">      <title>前端笔记</title>      <meta http-equiv="refresh" content="3;url=http://www.cnblogs.com/wuxibolgs329/">    </head>  <body>  </body></html>

2、通过 JavaScript 实现 8 秒后自动跳转到 http://www.cnblogs.com/wuxibolgs329/  页面。

<!doctype html>  <html>    <head>      <meta charset="utf-8">      <title>前端笔记</title>      <script type="text/javascript">        var time = 8; //时间,秒        function Redirect() {         window.location = "http://www.cssue.com/";        }        var i = 0;        function dis() {         document.all.s.innerHTML = "还剩" + (time - i) + "秒";         i++;        }        timer = setInterval('dis()', 1000); //显示时间        timer = setTimeout('Redirect()', time * 1000); //跳转      </script>  </head>  <body>    <span id="s"></span>  </body></html>

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持武林网!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表