<body>
<!--先编写好网页布局-->
<p id="hlength">window.history.length为:</p>
<h4>操作成功</h4>
<p>
<span id="count">
</span> 秒后回到主页
<a href="#" onclick="history.go(-1)">返回</a>
</p>
<script type="text/javascript">
var num=5;
var len=document.getElementById("hlength");
len.innerHTML=len.innerHTML+window.history.length;
function startcount(){
document.getElementById("count").innerHTML=num;
num=num-1;
setTimeout(startcount,1000);
if(num==0){
location="https://www.baidu.com/";
location.href="https://www.baidu.com/";
}
}
startcount();
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>