<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<p> <span id="time"></span>秒后回到主页 <a href="javascript:history.back()">返回</a></p>
<script type="text/javascript">
var num=5
function myy(){
if(num==0)
{window.location.assign("http://www.imooc.com");}
document.getElementById("time").innerHTML=num;
num--;
setTimeout("myy",1000) ;
}
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
setTimeout("myy",1000) ;//这个是一次性定时器.应该用这个好一点setInterval("myy()",1000);
修改了一下你的代码,我运行对了。主要还是逻辑上的关系,希望解决了你的问题。
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<p> <span id="time"></span>秒后回到主页 <a href="javascript:history.back()">返回</a></p>
<script type="text/javascript">
var num=5
function myy(){
document.getElementById("time").innerHTML=num;
num--;
if(num==0){window.location.assign("http://www.imooc.com");}
}
setInterval("myy()",1000);
</script>
</body>
</html>
<script> //实时显示秒数 var t; function tiem(){ var moa=document.getElementById("moa").innerHTML; moa=moa-1; if(moa<1){ clearTimeout(t); window.location.href="http://www.baidu.com"; } var moa=document.getElementById("moa").innerHTML=moa; t=setTimeout('tiem()',1000); } t=setTimeout('tiem()',1000); </script>
setTimeout的作用是多久之后执行一次 也只是执行一次 setInterval()是间隔性的 可以每隔多少时间一直执行