gpt4 book ai didi

javascript - 使用 javascript 关闭 iframe

转载 作者:行者123 更新时间:2023-12-02 19:24:45 25 4
gpt4 key购买 nike

如何使用javascript关闭iframe。我找到了一些方法来做到这一点

window.parent.close();

但是这个方法关闭了整个选项卡。但是我需要的只是关闭iframe。有人有解决方案吗??

最佳答案

iframe 不是窗口,它无法关闭。您可以hide它使用

$(theIFrame).hide();

remove如果您不再使用它:

$(theIFrame).remove();
<小时/>

如果您想在 iframe 文档内部的脚本中隐藏或删除 iframe,则必须首先获取相关元素。你可以这样做:

    var iframe = $(parent.document).find('iframe').filter(function() {
return this.src==location.href;
});
iframe.remove();

如果您不从 iframe 执行此操作,您应该有某种引用。或者你可以不加区别地这样做

$('iframe').remove();

关于javascript - 使用 javascript 关闭 iframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12157021/

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