gpt4 book ai didi

javascript - 从父窗口关闭子窗口

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:26:00 26 4
gpt4 key购买 nike

我不明白为什么这行不通。这段代码有什么问题吗?正在调用该函数,我通过警报进行了检查,但它不会关闭窗口。

 $('#click').click(function() {
var win = window.open("test3.html","something","width=550,height=170");
});

function closeit(){
win.close();
}

在 test3.html 上

 window.opener.closeit();

最佳答案

您的 win 变量的范围限定为处理点击事件的函数。将它放在该函数和 closeit 共享的范围内。

在这种情况下,它可能看起来像:

var win;



$('#click').click(function() {
win = window.open("test3.html", "something", "width=550,height=170");
});
});

function closeit() {
win.close();
}

关于javascript - 从父窗口关闭子窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15125577/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com