<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head>
<body>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var num=document.getElementById('sss').innerHTML;
function miao(){
if(num!=0){
document.getElementById("sss").innerHTML=num;
num=num-1;
}else{
location.assign("http://www.baidu.com");
}
}
setInterval("miao()",1000);
//通过window的location和history对象来控制网页的跳转。
function web(){
window.history.go(-1);
}
</script>
<!--先编写好网页布局-->
<h1>操作成功!</h1><br/>
<p> <span id="sss">5</span> 秒后回到主页</p>
<a href="javascript:web()">返回</a>
</body>
</html>