、、、
</head>
<body>
<!--先编写好网页布局-->
<p><b id="second"></b>秒后转到主页 <a href=http://www.imooc.com>返回</a>
<script type="text/javascript">
var i=5
setInterval(function timer(){
document.getElementById("second").innerHTML=i;
i--;
if(i==1) {
location.href="http://www.imooc.com";
}
}
,1000)
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>