Archive for 31 3 月, 2010

使用meta实现页面自动跳转

星期三, 31 3 月, 2010

代码:<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>
(更多…)