5S后返回首页

 <!DOCTYPE html>
<html>
<head>
<title>5S后返回首页</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<h2>操作成功</h2>
<p><a id="showtime">5s后回到主页</a> <a href="window.history.back()">返回</a></p> <script type="text/javascript"> //通过window的location和history对象来控制网页的跳转。
var flag = 5; var timer = setInterval(function(){ document.getElementById("showtime").innerHTML=flag+"秒后自动跳转到主页"; flag=flag-1; if(flag<=0){ window.location.href=""; } },1000); </script>
</body>
</html>
上一篇:idea生成JAVADOC 报java.lang.IllegalArgumentException解决方案[终极]


下一篇:本地Git与GitHub服务器建立连接(SSH方式通信)