以下代码,时间到了就页面变成空白。
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<div>
<h2>操作成功</h2>
<p><span id="second">5</span>秒后回到主页 </p>
<a href="http://www.imooc.com/">或点击此处立即前往</a>
<a href="javascript:back()">返回</a>
</div>
<script type="text/javascript">
var a=document.getElementById("second").innerHTML;
function time(){
a--;
document.getElementById("second").innerHTML=a;
switch(a){
case 0:
location.assign("http://www.imooc.com/")
break;}
}
setInterval("time()",1000);
//获取显示秒数的元素,通过定时器来更改秒数。
function back(){
window.history.back();
}
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>