<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
<style>
a {
text-decoration:none;
}
</style>
</head>
<body>
<!--先编写好网页布局-->
<h1>操作成功</h1>
<p id="black">
<b id="time_num"></b>秒后回到主页<a href="javascript:GOBack()">返回</a>
</p>
<!--<button type="button" onclick="GO()">click</button>-->
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
function GO(){
var number=5;
if (number==0){
window.location.assign("http://www.w3school.com.cn");
}
document.getElementById("time_num").innerHTML = number;
number=number - 1;
setTimeout("GO()",1000);
}
setTimeout("GO()",1000)
function GoBack(){
window.history.back();
}
</script>
</body>
</html>