gpt4 book ai didi

javascript - Window.close();在 Chrome 和 Mozilla Firefox 中不工作

转载 作者:行者123 更新时间:2023-11-30 10:02:46 24 4
gpt4 key购买 nike

我的应用程序向经理发送了一封电子邮件,其中包含批准和拒绝按钮

  • 当经理单击该按钮时,网页将打开。
  • 在该页面中有一个关闭按钮。单击关闭按钮时,它应该关闭浏览器窗口。但它没有关闭,并在控制台上抛出一条错误消息“脚本可能不会关闭脚本未打开的窗口。”

我试图关闭窗口,即已经打开。休闲方式

var win = window.open('','_self');
win.close();

window.top.opener=null;
window.close();

var win=window.open("","_self");
win.close();

window.open('','_parent','');
window.close();

上述方法无效。有人可以为此提供解决方案吗。

提前致谢。请不要关闭它。因为我在谷歌上搜索了很多,所以我没有找到解决方案。

最佳答案

参见 MDN on window.close() :

This method is only allowed to be called for windows that were opened by a script using the window.open() method. If the window was not opened by a script, the following error appears in the JavaScript Console: Scripts may not close windows that were not opened by script.

关于javascript - Window.close();在 Chrome 和 Mozilla Firefox 中不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30724458/

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