<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h>操作成功</h><br/>
<span id="clock">5</span><span>秒后返回主页</span><a href="javascript:goback()">返回</a>
<script type="text/javascript">
var num=document.getElementById("clock").innerHTML;
function startCount(){
num--;
document.getElementById("clock").innerHTML=num;
if(num==1){
location.assign("www.imooc.com");
}
}
setInterval("startCount()",10000);
//获取显示秒数的元素,通过定时器来更改秒数。
function goback(){
window.history.back();
}
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
代码没问题,用eclipse运行就可以了
setInterval("startCount()",10000);
就是从5一下子跳到3,然后过一秒,变成了1