使用meta实现页面自动跳转

代码:<meta http-equiv=”refresh” content=”10; url=blog/”>

说明:10秒钟后自动跳转到blog子目录,比如在首页http://www.lordong.net上使用上面这句可以自动跳转到/wp/

实现倒计时脚本:
<script type=”text/javascript”>
var m_timeout = 10;

function timeOut() {
m_timeout–;

if (m_timeout >= 0)  {
document.getElementById(“timeout”).innerHTML = m_timeout;
}
}
</script>

启动倒计时代码:
<body onload=”setInterval(‘timeOut()’, 1000);”>

显示倒计时脚本:
<span id=”timeout”>10</span> 秒钟后自动跳转到 <a href=”blog/”>LorDong’s Blog</a>

当然也可以在timeOut()函数里在m_timeout计时为<0时使用location.href=’blog/’来替换自动跳转的meta代码。

Leave a Reply