求大神指点,怎么才回显示倒计时呢?我这个5秒一到就转了,但是页面上不会经过54321递减,一直显示5秒后
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<div>
<h2>操作成功</h2>
<a><strong>5</strong>秒后返回主页</a>
<a href="window.history.back()">返回</a><!--先编写好网页布局-->
</div>
<script type="text/javascript">
function haha(){
var time=new Date();
attent=time.getSeconds();
if(attent==5){
window.open('http://www.baidu.com','_blank','width=700px,height=600px');
clearInterval(setInterval(haha,1000));
}//获取显示秒数的元素,通过定时器来更改秒数。
}
setInterval(haha,1000);
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>