本轮测试问题答案
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1>操作成功</h1>
<p><span id="a">5</span>秒后返回主页</p><a href="javascript:return()">返回</a>
<script type="text/javascript">
var num=4;
var i=setInterval(colick,1000);//获取显示秒数的元素,通过定时器来更改秒数。
function colick(){
var sp=document.getElementById("a");//通过window的location和history对象来控制网页的跳转
if(num<0){
clearInterval(i);//取消计时器并实现跳转
location.assign("http://www.imooc.com");
}else{
sp.innerHTML=num;
num=num-1;
}
}
function retrun(){
window.history.back();
}
</script>
</body>
</html>