问答详情
源自:8-17 编程练习

为甚么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>

提问者:qq_蜘蛛的听觉在脚上_03435164 2016-06-22 16:14

个回答

  • HEI_ComeOn
    2016-06-29 09:23:42

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

  • 慕田峪1293733
    2016-06-23 11:55:29

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

  • 慕田峪1293733
    2016-06-22 17:38:27

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