我想知道,怎么写才能有历史界面???如果我真的要把这个跳转提示页面运用到实际,这提示页面如何和所有页面在一个页面里?而不是一个新的html页面?否则怎么可以用history后退?个
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<span id="num"></span><span>秒后回到主页</span>
<a onclick="gob()">返回</a>
<script type="text/javascript">
setInterval("startStr()",10000);
var numb=5;
//获取显示秒数的元素,通过定时器来更改秒数。
function startStr(){
document.getElementById("num").innerHTML=numb;
numb--;
if(numb==0)
{
location.assign("http://www.baidu.com");
}
}
//通过window的location和history对象来控制网页的跳转。
function gob(){
window.history.go(-1);
}
</script>
</body>
</html>