首页 > 代码库 > 5S后返回首页
5S后返回首页
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>5S后返回首页</title> 5 <meta http-equiv="Content-Type" content="text/html; charset=gkb"/> 6 </head> 7 <body> 8 <h2>操作成功</h2> 9 <p><a id="showtime">5s后回到主页</a> <a href="http://www.mamicode.com/window.history.back()">返回</a></p>10 11 12 <script type="text/javascript"> 13 14 //通过window的location和history对象来控制网页的跳转。15 var flag = 5;16 17 var timer = setInterval(function(){18 19 document.getElementById("showtime").innerHTML=flag+"秒后自动跳转到主页";20 21 flag=flag-1;22 23 if(flag<=0){24 25 window.location.href="";26 27 }28 29 },1000); 30 31 </script> 32 </body>33 </html>
5S后返回首页
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。