我有两个不同的应用程序服务器A和B,在A的窗口中有一个链接,他打开了一个新的B窗口。
我现在的要求是:在第二次点击A时,我想在B的窗口中打开一个新标签。我做了一个例子:
<button onclick="myFunction()">Try on</button>
<script>
var myWindow;
function myFunction() {
if(!myWindow) {
myWindow=window.open('https://google.com',"","width=500,height=500,toolbar=yes,resizable=1");
myWindow.focus();
}
else {
myWindow=myWindow.open('https://google.com',"_blank");
}
</script>
在第一次单击时,窗口出现并打开谷歌但在第二次点击时无效。
你能帮助xD
吗?如果是重复的问题,请给我链接:)
答案 0 :(得分:0)
无法满足要求,已打开的window
与window.opener
的来源不同