gpt4 book ai didi

javascript - iframe加载后隐藏链接

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

我有这段代码来隐藏 iframe,直到单击链接

<a href="http://www.site.com/" target="iframe1" onClick="document.getElementById('iframe1').parentNode.style.display=''">link</a>

</br></br>

<div style="display:none;"><iframe id="iframe1" name="iframe1" src="#"></iframe></div>

我想在 iframe 加载后隐藏链接

请问我该怎么做?

如果有比我的代码更好的代码,也请发布

谢谢

最佳答案

将链接更改为:

<a href="http://www.site.com/" target="iframe1" onClick="document.getElementById('iframe1').parentNode.style.display='block'; this.style.display = 'none';">link</a>

它将链接的样式设置为 display: none .

此外,我将 iframe 的显示设置为阻止而不是“”。您应该考虑将 HTML 之外的 css 和 javascript 移动到外部文件中,或者至少移动到 <style> CSS 标签和 <script> JS 标签。

关于javascript - iframe加载后隐藏链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15369227/

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