<!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>
相关文章
- 08-18将数组的数据进行反转,并且返回反转后的数组
- 08-18TreeMap自定义compare后get永远返回null的问题
- 08-18python中sort排序后返回同时返回下标
- 08-18Mybatis使用Map当做参数获取插入数据成功后返回的自增id
- 08-18nginx配置后只有根目录首页index.php能访问,其他页面404
- 08-18GO语言 按照索引切割字符串并返回分割后的两个字符串
- 08-18新浪微博SSO授权后回调客户端没有执行sinaweiboDidLogIn&无法返回应用
- 08-18tp model 使用__construct 后返回数据为空
- 08-18Math.round() 函数返回一个数字四舍五入后最接近的整数。
- 08-18Win32 API编程:网络编程在设置WSAAsyncSelect模型后connect的返回值问题