码迷,mamicode.com
首页 > Web开发 > 详细

js实现指定时间跳转到另一个页面

时间:2018-01-06 16:01:21      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:oca   主页   pen   script   html   post   简单   hid   inner   

技术分享图片
 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <title>setTimeout</title>
 5 </head>
 6 <body>
 7 <h1>跳转页面</h1>
 8 <form>
 9     <div>
10         <p><span id="skip"></span>秒后跳转到主页面</p>
11     </div>
12 </form>
13 <script type="text/javascript">
14     var t = 5;
15     function showTime() {
16         t -= 1;
17         document.getElementById(skip).innerHTML = t;
18         if (t == 0) {
19             window.location.href = http://www.baidu.com;
20         }
21         setTimeout("showTime()",1000);
22     }
23     showTime();
24 </script>
25 </body>
26 </html>
js实现简单跳转

 

js实现指定时间跳转到另一个页面

标签:oca   主页   pen   script   html   post   简单   hid   inner   

原文地址:https://www.cnblogs.com/sxh-myblogs/p/8214204.html

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