<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<!--先编写好网页布局-->
<h1 style="text-align: center;">操作成功</h1>
<br><br>
<p style="text-align: center;"><strong id="seconds">5</strong>秒后回到主页<a href="llou.html">返回</a></p>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var int=setInterval(getseconds,1000);
var seconds=4;
function getseconds()
{
document.getElementById("seconds").innerHTML=seconds;
seconds--;
if(document.getElementById("seconds").innerHTML==1)
{
clearInterval(int);
history.back();
}
}
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
llou.html文件
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>主页</title>
</head>
<body>
<h1 style="text-align: center;">我是主页</h1>
<a href="8-17test.html" style="text-align: center; display: block;text-decoration: none;color:blue;">点击跳转到8-17test.html</a>
</body>
</html>
没什么毛病,只是题目要求而已。要求点返回返回上一个页面,五秒无操作要打开一个新页面,此时需要用到location,这是两个要求。