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

秒数一直往下走

<!DOCTYPE html><html> <head>  <title>浏览器对象</title>    <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>    </head> <body>  <!--先编写好网页布局-->  <h1>操作成功</h1>   <p><span id="clock">5</span>秒后回到主页<a href="javascript:back()">返回</a></p>      <script type="text/javascript">    var num=document.getElementById("clock").innerHTML;    function count(){           num--;            document.getElementById("clock").innerHTML=num;            if(num==0)            {                window.open('https://www.imooc.com','_blank','width=400,height=400');            }                 }      setInterval("count()",1000);       function back(){           window.history.back();       }          </script></body></html>


正在回答

1 回答

这一句写错了: window.open('https://www.imooc.com','_blank','width=400,height=400');改为 window.location.href="https://www.imooc.com/"; 如何还不行,就是细节问题了

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

幕布斯8168822 提问者

为什么不能用 window.open打开新窗口?
2018-08-02 回复 有任何疑惑可以回复我~
#2

impqpqp 回复 幕布斯8168822 提问者

window.open明显是可以的,你可以换个浏览器(比如IE)试试;
2018-08-27 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

秒数一直往下走

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