这个代码为什么不执行返回操作?
</body><!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1>操作成功!</h1>
<p><span id="seconds">5</span>秒后回到主页
<a href="javascript:open();">返回</a></p>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
var intervalTime = 5000;
var frq = 1000;
var t = intervalTime / frq;
function open(){
if(window.history.length==0){
location.assgin("www.baidu.com");
}
else{
window.history.go(-1);
}
}
function countdown(){
if(t==0){
open();
}
else{
t = t - 1;
document.getElementById("seconds").innerHTML = t;
}
}
//间隔函数
setInterval(countdown, frq);
</script>
</body>
</html>
</html>