qq_蜘蛛的听觉在脚上_03435164
2016-06-22 16:14
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<h1>操作成功</h1> <!--先编写好网页布局-->
<span id="time">5</span>
<span>秒后返回首页</span>
<a href="JavaScript:history.back(1)">返回</a>
<script type="text/javascript">
var i=document.getElementById("time").innerHTML;
function count(){
i--;
document.getElementById('time').innerHTML=i
}setInterval(count,1000);
if(i==0){window.open("http://www.imooc.com")}
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
setInterval(count,1000); 把这句话改成 setInterval("count()",1000)试试
你把 window.open 封装到你的函数里面了;所以现在你要做的是在函数声明外面调用你写的函数;count();
你都没调用你的函数怎么反应
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题