Check if a popup window is closed
I am opening a popup window with
var popup = window.open('...', '...');
This javascript is defined in a control. This control is then used from a web page. I want to reload the page which opens this popup when the popup is closed.
Basically user is required to input some denominations in the popup window and submit. These denominations are then stored in user sessions. And when use开发者_运维技巧r clicks submit I am closing the popup window and at the same time want to refresh the window which opens this popup to refetch the updates which user made in the popup.
I am trying to do
var popup = window.open('...','...');
if (popup) {
popup.onClose = function () { popup.opener.location.reload(); }
}
I guess I am doing it wrong coz this isn't seems to be working.
For testing the issue I've even tried this but no alert appeared.
if (popup) {
popup.onclose = function() {
alert("1.InsideHandler");
if (opener && !opener.closed) {
alert("2.Executed.");
opener.location.reload(true);
} else {
alert("3.NotExecuted.");
}
}
}
Here's what I suggest.
in the popup you should have:
<script type="text/javascript">
function reloadOpener() {
if (top.opener && !top.opener.closed) {
try {
opener.location.reload(1);
}
catch(e) {
}
window.close();
}
}
window.onunload=function() {
reloadOpener();
}
</script>
<form action="..." target="hiddenFrame">
</form>
<iframe style="width:10px; height:10px; display:none" name="hiddenFrame" src="about:blank"></iframe>
then in the server process you can return
<script>
top.close();
</script>
Old suggestions
There is no variable called popup in the popup window. try
var popup = window.open('...','...');
if (popup) {
popup.onclose = function () { opener.location.reload(); }
}
or with a test:
popup.onclose = function () { if (opener && !opener.closed) opener.location.reload(); }
PS: onclose is not supported by all browsers
PPS: location.reload takes a boolean, add true if you want to not load from cache
as in opener.location.reload(1);
Try this:
window.opener.location.reload(true);
or
Into the popup before closing
window.opener.location.href = window.opener.location.href;
window.close();
Solution for same origin popups
If your popup is from the same origin as the opener, you can attach an event listener to the popup like this:
const popup = window.open('...', '...');
popup.window.addEventListener('load', () => {
popup.window.addEventListener('unload', () => {
console.log('> Popup Closed');
// window.location.reload();
});
});
Note that the unload event listener needs to be added once the popup is loaded. This is because the unload event fires also on page load in popups.
Solutions for different origin popups
If your popup is not from the same origin as the opener, you will receive an error like this: Blocked a frame with origin from accessing a cross-origin frame.
For security reasons, you can only access a limited set of properies from both opener and the opened window.
More about that here.
Solution 1
You have to create the unload event listener in your popup and call window.opener.location.replace(OPENER_URL)
. The drawback of this is that you need the opener's url. Instead of harcoding, you could pass the url as a query string to the popup.
Note that window.opener.location.reload()
is not allowed in a cross-origin scenario.
Solution 2
Alternatively, you could create an interval in the opener to periodically check wheter the window is open or not with the window.closed property.
const popup = window.open('...', '...');
const interval = setInterval(() => {
if (popup.closed) {
clearInterval(interval);
console.log('> Popup Closed');
// window.location.reload();
}
}, 500);
Ok so what you do is as follows.
create a method "setWindowObjectInParent" then call that in the popup. var popupwindow;
function setWindowObjectInParent(obj)
{
popupwindow = obj;
}
Now you have an object that you can call focus on.
So in the popup add
$(window).unload(function(){
window.opener.setWindowObjectInParent();
});
window.opener.setWindowObjectInParent(window);
This will unset the obj when the popup is closed and set the object when it is opened.
Thus you can check if your popup is defined and then call focus.
Instead you should use a modal dialog like so
var popup = window.showModalDialog("page.html", "", params);
This would stop your at this line until the dialog is closed.
Somewhere in your page.html you would then code some javascript to set the window.returnValue
which is what will be place the the popup variable.
Update
Window.showModalDialog() is now obsolete.
精彩评论