javascript实现自动跳转到首页的代码实例

发布于 2022-09-30 11:47:33 字数 1923 浏览 12 评论 0

转:志向不在北京

javascript实现自动跳转到首页的代码实例

最简单的方法

在网页的<head>段中添加

  1. <meta http-equiv="refresh" content="3;url=http://要跳的页面">

复制代码方法二带有秒数走动的效果

  1. <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.3ppt.com /tr/xhtml1/dtd/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=gb2312" />
  5. <title>几秒钟后页面自动跳转</title>
  6.     <script language=网页特效>
  7.     function countdown(secs,surl){
  8.     //alert(surl);
  9.     tiao.innertext=secs;//<span>中显示的内容值
  10.     if(--secs>0){
  11.            settimeout("countdown("+secs+",'"+surl+"')",1000);//设定超时时间
  12.            }
  13.     else{
  14.      
  15.            location.href=surl;//跳转页面
  16.            }
  17.     }
  18.     </script>
  19. <!--脚本结束-->
  20. </head>
  21. <body>
  22.     <span id="tiao">30</span>秒后将自动跳转到网站首页<script language=javascript>countdown(5,'http://www.3ppt.com');</script>
  23. </body>
  24. </html>

复制代码

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文