一开始是因为浏览器自动屏蔽弹窗,导致调试了好久,后来是因为location.assig(),拼写出错,导致浪费了一些时间,总的来说收获很大。
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1>操作成功</h1>
<span id = "num">5 </span>
<span id = "dao">秒后 返回主页 </span>
<a href = "javascript:back()">返回 </a>
<script type="text/javascript">
var i =document.getElementById("num").innerHTML;
//获取显示秒数的元素,通过定时器来更改秒数。
function count(){
//i--;
document.getElementById("num").innerHTML = --i;
if(i==0){
location.assign("www.imooc.com");
}
//location.assgin("www.baidu.com");
}
var j =setInterval("count()",2000);
//通过window的location和history对象来控制网页的跳转。
function back(){
window.history.back();
}
</script>
</body>
</html>