<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1><strong>操作成功</strong></h1>
<span id="block">5</span><span>秒后回到首页</span><a href="window.history.back()">返回</a>
<script type="text/javascript">
function second(){
document.getElementById("block").innerHTML=var num;
num=5;
num--;
if(num==0){
location.href("www.imooc.com");
}
}
setInterval("second()",1000);
为什么秒不变呢
问题有好几处呢:1,先定义var num=5;然后再输出document.getElementById("block").innerHTML=num;输出后进行自减,num--;2,打开网页应该是location.assign("http://www.imooc.com");location.href("http://www.imooc.com")是返回()里的字符串也就是网址。