<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body onload="count()">
<!--先编写好网页布局-->
<h1>操作成功</h1>
<a id="aid"></a>
<a href="window.history.back()">返回</a>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var t=6;
function count(){
t--;
if(t>0){
document.getElementById("aid").innerHTML=t+"秒后回到主页";
setTimeout("count()",1000);
}
else{
//window.open("http://www.imooc.com");
location.assign("http://www.imooc.com");
}
}
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
我功能都实现了,但到底怎样才能让返回有效果,我无法让运行窗口有浏览记录,怎么才能返回不出现空白文档?????
那是因为在我们代码运行窗口里面你提交代码的前一个页面就是空白文档,所以当你返回的时候会看到空白文档,没什么问题吧。