为了账号安全,请及时绑定邮箱和手机立即绑定

为甚么window.open不起作用

<!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>

正在回答

3 回答

setInterval(count,1000);  把这句话改成    setInterval("count()",1000)试试

0 回复 有任何疑惑可以回复我~

你把 window.open 封装到你的函数里面了;所以现在你要做的是在函数声明外面调用你写的函数;count();

0 回复 有任何疑惑可以回复我~

你都没调用你的函数怎么反应

0 回复 有任何疑惑可以回复我~
#1

qq_蜘蛛的听觉在脚上_03435164 提问者

能说详细点么,不是if(i==0){window.open()}了么~
2016-06-22 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为甚么window.open不起作用

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信