我知道有很多这样的问题有许多答案。
我知道我可以使用
var popup = window.open('');
以后可以使用
popup.close();
关闭那个窗口。
但是,有没有办法关闭所有孩子而不必存储window.open结果?
那就是我可以吗
window.open('1');
window.open('2');
window.open('3');
然后以某种方式做一个全球性的"关闭"打电话会关闭这三个窗口吗?
如果没有,我可以通过使用以下代码来完成它吗?
window.open('1','window1');
window.open('2','window2');
window.open('3','window3');
答案 0 :(得分:6)
你可以创建一个新功能,基本上将现有功能包装在你想要做的事情中。
var WindowDialog = new function() {
this.openedWindows = {};
this.open = function(instanceName) {
var handle = window.open(Array.prototype.splice.call(arguments, 1));
this.openedWindows[instanceName] = handle;
return handle;
};
this.close = function(instanceName) {
if(this.openedWindows[instanceName])
this.openedWindows[instanceName].close();
};
this.closeAll = function() {
for(var dialog in this.openedWindows)
this.openedWindows[dialog].close();
};
};
样本使用
WindowDialog.open('windowName', /* arguments you would call in window.open() */);
WindowDialog.open('anotherName', /* ... */);
WindowDialog.open('uniqueWindow', /* ... */);
WindowDialog.open('testingAgain', /* ... */);
WindowDialog.open('finalWindow', /* ... */);
// closes the instance you created with the name 'testingAgain'
WindowDialog.close('testingAgain');
// close all dialogs
WindowDialog.closeAll();
答案 1 :(得分:2)
尝试此操作以打开和关闭
document.MyActiveWindows= new Array;
function openWindow(sUrl,sName,sProps){
document.MyActiveWindows.push(window.open(sUrl,sName,sProps))
}
function closeAllWindows(){
for(var i = 0;i < document.MyActiveWindows.length; i++)
document.MyActiveWindows[i].close()
}