<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<p><span id="opp">5</span>秒后回到主页 <a href="javascript:tzn();">返回</a></p>
<script type="text/javascript">
var num=5;
var opp1=document.getElememtById("opp");
function zid()
{
num=num-1;
opp1.innerHTML=num;
if(num==0)
{
window.open('http://www.imooc.com','_blank');
}
setTimeout("zid()",1000);
}//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
function tzn()
{
location.assign(window.history.go(-1));
}
</script>
</body>
</html>
额,知道了 拼错了