gpt4 book ai didi

javascript - 如何关闭 iframe 窗口?

转载 作者:行者123 更新时间:2023-12-02 15:11:55 24 4
gpt4 key购买 nike

大家好,我现在正在处理 iframe,问题是 iframe 没有完全关闭,重新加载页面时 iframe 正在后台运行,并且由于 iframe 按钮导致我无法在重新加载后访问页面。我无法访问该页面。

我在下面附上了我的 iframe 代码,建议我可能的解决方案。

<div class="top" onclick="removeIFrame();"></div>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="myModalLabel">New Message</h4>
</div>
<div class="modal-body">
<iframe id="templatesrc" name="templatesrc" src="?do=manualupgrade&id=<AJDF:output>$smarty.get.id</AJDF:output>" width="690" height="400" frameborder="0"></iframe>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>

最佳答案

在您的页面中添加以下代码

<script>
function removeIFrame(){
document.getElementById("templatesrc").remove();
}
</script>

这将完全删除 iframe。

关于javascript - 如何关闭 iframe 窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34759646/

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