倒计时跳转

Posted 小鬼PSer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了倒计时跳转相关的知识,希望对你有一定的参考价值。

 

 1 <html> 
 2 <head> 
 3 <title>10秒后跳转</title> 
 4 </head> 
 5 <body> 
 6 <input type="text" readonly="true" value="10" id="time"> 
 7 </body> 
 8 <script language="javascript"> 
 9 var t = 10; 
10 var time = document.getElementById("time"); 
11 function fun(){ 
12 t--; 
13 time.value = t; 
14 if(t<=0){ 
15 location.href = "http://www.jb51.net"; 
16 clearInterval(inter); 
17 } 
18 } 
19 var inter = setInterval("fun()",1000); 
20 </script> 
21 </html>

 

以上是关于倒计时跳转的主要内容,如果未能解决你的问题,请参考以下文章

各种页面定时跳转(倒计时跳转)代码总结

[javascript]各种页面定时跳转(倒计时跳转)代码总结

JS倒计时网页自动跳转代码

python使用上下文对代码片段进行计时,非装饰器

求一个倒计时20s跳转到一网址的html代码

小代码   html 自己网页倒计时跳转