为什么不会倒计时,也不能返回上一网址?
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好
网页布局-->
<h1>操作成功!<br></h1>
<b id="scecound">5</b>秒后返回主页
<a href="javascript:goBack()">返回</a>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var i=document.getElementById("scecound");//获取元素
var e=5;
//使用计时器
var time=setInterval(function(){
var i=document.getElementById("scecound");//获取元素
e--;
i.innerHtml=e;
if(i==0){
window.location.href="https://www.imooc.com/";
}
},1000);
//通过window的location和history对象来控制网页的跳转。
function goBack(){
window.location.forward();
}
</script>
</body>
</html>