Posted in Javascript onSeptember 21, 2013
下面对使用JavaScript实现页面定时跳转(也称倒计时跳转)做一下总结,各种定时跳转代码记录如下:
(1)使用 setTimeout 函数实现定时跳转(如下代码要写在body区域内)
<script type="text/javascript"> // 3秒钟之后跳转到指定的页面 setTimeout(window.location.href = "http://3aj.cn/javascript/19.html", 3); </script>
(2)html代码实现,在页面的head区域块内加上如下代码
<!-- 5秒钟后跳转到指定的页面 --> <meta http-equiv="refresh" content="5;url=http://3aj.cn/javascript/19.html" />
(3)稍微复杂点,多见于登陆之后的定时跳转
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>js定时跳转页面的方法</title> </head> <body> <script type="text/javascript"> var t = 10; // 设定跳转的时间 setInterval("refer()", 1000); // 启动1秒定时 function refer(){ if (t == 0) { location = "http://3aj.cn/javascript/19.html"; // 设定跳转的链接地址 } document.getElementById('show').innerHTML = "" + t + "秒后跳转到php程序员教程网"; // 显示倒计时 t--; // 计数器递减 } </script> <span id="show"></span> </body> </html>
使用javascript实现页面定时跳转总结篇
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@