history.back()无法返回
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style>
#text1{float:left;}
</style>
</head>
<body>
<!--先编写好网页布局-->
<h4>操作成功</h4>
<div id="text1"></div>
<input type="button" value="返回" onclick="goback1"/>
<script type="text/javascript">
var num=5;
function Time1()
{
document.getElementById("text1").innerHTML=num+"秒后返回主页";
num--;
if(num==-1){
clearInterval(i);
window.location.href='http://www.imooc.com';
}
}
var i=setInterval(Time1,1000);
//获取显示秒数的元素,通过定时器来更改秒数。
function goback1()
{
window.history.back();
}
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>