我的弹出广告代码是:
<script type='text/javascript' src='//URL'></script>
如果我在window.open
中插入的网址未加载。
我也试过这个,但没有:
var importantStuff = window.open('http://example.com/waiting.html', '_blank');
如果我只是在页面中插入它就可以了。为什么呢?
答案 0 :(得分:0)
尝试类似:
window.open(
"http://example.com/waiting.html",
"Example page",
"outerWidth=600,width=500,innerWidth=400,resizable,scrollbars,status"
);
以下是一个示例:http://jsfiddle.net/870qnLew/