How to know when popup is closed in javascript

霸气de小男生 提交于 2019-12-11 05:36:45

问题


This code will open go.com in popup window:

<a href="javascript:void(0)" onClick="javascript:window.open('http://go.com','','status=yes,scrollbars=yes,toolbar=no,menubar=no,location=no ,width=300px,height=300px')">open</a>

and I want to use alert('closed!') in main page, when popup is closed and I can't edit popup page for use onunload="alert('closed!')", because the popup page is an external page and I can't change the code like

var mywindow = window.open('http://go.com') ...

Thanks.


回答1:


How about instead of directly loading that external page in the window, you open up a "local" window with an iframe containing the external page content? That way you still have enough control over the actual window to be able to tell when it's closed.

Some drawbacks: the address bar will not show the URL they are browsing and it may also break if go.com has some sort of frame busting code.

Some example code:

function openIFrameInWindow(url) {
    var myWindow = window.open("");

    var iframe = document.createElement("iframe");
    iframe.src = url;

    myWindow.document.body.appendChild(iframe); 

    myWindow.document.body.onbeforeunload = function () { alert("WINDOW CLOSED") }; 
}

<a href="javascript:void(0)" onClick="javascript:openIFrameInWindow('http://go.com')">open</a>



回答2:


How about checking the status of the window every 1 second to see if it has been closed? Sample code, not tested:

var mywindow= window.open();
checkmywindow();

function checkmywindow()
{
   if(mywindow.closed)
   {
      //code when popup is closed
   }
   else
   {
      setTimeout("checkmywindow();", 1000);
   }
}



回答3:


When the popup window is closed you can INFORM the opener window about it by using the window.opener property.

So:

//pseudocode in pop-up window
onClose() {
 window.opener.popUpClosed = true;
}

Now in your page that opened the popUp you can check for the value of the popUpClosed variable.

More on the opener property here: http://www.webreference.com/js/tutorial1/opener.html



来源:https://stackoverflow.com/questions/3846553/how-to-know-when-popup-is-closed-in-javascript

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!