如果从警告框启动,弹出框不会加载

Popup not load if started from Alert Box

本文关键字:加载 警告 启动 如果      更新时间:2023-09-26

我的弹出式广告代码是:

<script type='text/javascript' src='//URL'></script>

如果我插入url在window.open不加载。我也尝试过这个,但没有:

var importantStuff = window.open('http://example.com/waiting.html', '_blank');

如果我插入它只是在页面工作。为什么?

试试这样写:

window.open(
  "http://example.com/waiting.html",
  "Example page",
  "outerWidth=600,width=500,innerWidth=400,resizable,scrollbars,status"
);

下面是一个例子:http://jsfiddle.net/870qnLew/