<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<!--先编写好网页布局-->
<h3>操作成功</h3>
<p><span id="times">5</span>秒后回到主页 </p>
<button onclick="goback()">返回</button>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
var times = document.getElementById("times");
var i = 5;
var timer = setInterval(function(){
if(times.innerHTML == 0){
window.location.href="https://www.imooc.com/";
}
else{
i--;
times.innerHTML = i;
}
},1000);
function goback(){
window.history.back();
}
</script>
</body>
</html>