<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
<h1>操作成功</h1>
</head>
<body>
<!--先编写好网页布局-->
<p>
<span id="a"></span>秒后回到主页
<form>
<input type="button" onclick="countdown()" value="返回" />
</form>
</p>
<script type="text/javascript">
var count=5;
var timer=document.getElementById("a");
timer.innerHTML=count;
function countdown(){
if(timer.innerHTML>0){
timer.innerHTML=timer.innerHTML-1;
}
setInterval("countdown()",1000);
}
if(timer.innerHTML==0){
window.history.go(-1);
}
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
而且还不能返回
不要写==0,写<0试试呢