码迷,mamicode.com
首页 > 其他好文 > 详细

倒计时跳转

时间:2018-01-06 15:53:10      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:rip   script   pre   round   .net   class   ntb   document   head   

 

 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>

 

倒计时跳转

标签:rip   script   pre   round   .net   class   ntb   document   head   

原文地址:https://www.cnblogs.com/php-qiuwei/p/8214151.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!