17

我正在使用 Smarty 模板系统。它的一个特点是可以输出为每个页面生成调试信息的脚本。在这里您可以看到生成代码的示例:

<script type="text/javascript">
//<![CDATA[

setTimeout(function() {  //Attempt to fix the issue with timeout
    var _smarty_console = window.open("about:blank","md5hash","width=680,height=600,resizable,scrollbars=yes");
    console.log(_smarty_console);  //Trying to log it
    if(_smarty_console!=null) {
      _smarty_console.document.write("<!DOCTY... lots of HTML ...<\/html>\n");
      _smarty_console.document.close();
    }
}, 5000);
//]]> 
</script>

问题是,window.open函数总是返回null。我试图推迟它,setTimeout但没有任何改变。当我复制代码并在 Firebug 控制台中运行它时,它可以正常工作。页面上没有其他脚本。该页面使用严格的 XHTML。脚本就在之前</body>

4

2 回答 2

23

它被浏览器阻止。window.open只有当它被用户操作调用时,它才不会被阻止,例如在点击事件中,由本机浏览器事件发出。JavaScript 发出的事件也被阻止,就像延迟的 setTimeout 回调一样。

<a id="link" href="http://stackoverflow.com">StackOverflow</a>

<script type="text/javascript">

// Example (with jQuery for simplicity)

$("a#link").click(function (e) {
  e.preventDefault();

  var url = this.href;

  // this will not be blocked
  var w0 = window.open(url);
  console.log("w0: " + !!w0); // w0: true

  window.setTimeout(function () {
    // this will be blocked
    var w1 = window.open(url);
    console.log("w1: " + !!w1); // w1: false
  }, 5000);
});

</script>

观看小提琴。我也在活动中尝试过keypress,但没有运气。

window.open返回对新(或现有的命名)窗口的有效引用,或者null当它未能创建新窗口时。

于 2013-08-23T11:25:55.717 回答
-6

在 window.open 之后尝试下一个命令并超时,例如:

var myWindow = window.open('foo','_blank','menubar=no, scrollbars=yes, top=10, width=800,height=600');

setTimeout( myWindow.onload=function(){this.document.body.innerHTML+='bar';}, 2000 );
于 2014-01-24T14:16:47.230 回答