<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<p>操作成功</p>
<p><span id="second">5</span>秒后返回主页 <a href="http://www.baidu.com">返回</a></p>
<script type="text/javascript">
var num=5;
var i;
function myTime(){
num--;
document.getElementById("second").innerHTML=num;
if(num=0){
clearTimeout(i-1);
window.location.href = "http://www.imooc.com/";
}
i=setTimeout("myTime()",1000)
}
setTimeout("myTime()",1000)
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>