1

我知道有很多类似的问题有很多答案。

我知道我可以使用

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');
4

2 回答 2

7

您可以创建一个新功能,该功能基本上将现有功能与您正在尝试执行的功能相结合。

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();
于 2013-07-19T22:35:10.543 回答
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()
}
于 2013-07-19T22:25:06.767 回答