Chrome Window.open grgles

时间:2017-06-14 12:22:21

标签: javascript google-chrome

我有以下代码:

<script>
window.open("https://www.google.com", menubar=0, true);
window.open("https://www.google.com", menubar=0, true);
window.open("https://www.google.com", menubar=0, true);
window.open("https://www.google.com", menubar=0, true);    </script>

在http页面中注入。 Chrome会在新窗口中打开链接(https://www.google.com)一次(不是新标签,新窗口)。为什么没有铬打开它4次?我已允许弹出窗口显示已修改的页面。控制台说: 此页面不是同一个来源,也不是网址的父页面。

这意味着什么以及如何使其正常工作?

1 个答案:

答案 0 :(得分:-1)

在java脚本中你可以这样做

$(function(){ 
    window.open(url, windowName[, windowFeatures]); 
});