求助 不知道哪错了 都不好使
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<span id="second">5</span>
<span>秒后回到首页</span>
<a href="javascript:return();">返回</a>
<script type="text/javascript">
var i=document.getElementById("second").innerHTML;
function count(){
i--;
document.getElementById("second").innerHTML=i;
if(i==0){
location.assign("www.imooc.cin");
}
}
setInterval("count()",1000);
//获取显示秒数的元素,通过定时器来更改秒数。
function return(){
window.history.back();
}
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>