如果从Alert Box启动,则不会加载弹出窗口

时间:2015-08-08 22:35:55

标签: javascript popup alert box

我的弹出广告代码是:

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

如果我在window.open中插入的网址未加载。 我也试过这个,但没有:

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

如果我只是在页面中插入它就可以了。为什么呢?

1 个答案:

答案 0 :(得分:0)

尝试类似:

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

以下是一个示例:http://jsfiddle.net/870qnLew/