页面定时跳转
Posted 党欣彤
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了页面定时跳转相关的知识,希望对你有一定的参考价值。
1、html
<span id="show"></span>
2、js
<script type="text/javascript"> var t=10;//设定跳转的时间 setInterval("refer()",1000); //启动1秒定时 function refer(){ if(t==0){ location="http://www.daimajiayuan.com/sitejs-17251-1.html"; //#设定跳转的链接地址 } document.getElementById(‘show‘).innerHTML=""+t+"秒后跳转到代码家园"; // 显示倒计时 t--; // 计数器递减 //本文转自: } </script>
以上是关于页面定时跳转的主要内容,如果未能解决你的问题,请参考以下文章