gpt4 book ai didi

javascript - 如果在 iframe 中显示/隐藏 div

转载 作者:太空宇宙 更新时间:2023-11-04 14:33:22 26 4
gpt4 key购买 nike

如果页面加载到 iframe 中,我会尝试显示/隐藏不同的页面元素

<script>this.top.location !== this.location && (this.top.location = this.location);</script>

可以很好地转义 iframe,但是

<script>this.top.location !== this.location && (document.getElementById("toolbar").style.display="none");</script>

不会隐藏 ID 为“toolbar”的 div。我究竟做错了什么? (我的 javascript 知识非常有限)。非常感谢。

最佳答案

尝试使用 jQuery!你应该像下面这样使用选择器:首先选择 iframe 元素,然后在此找到:

$("#myIframeId").contents().find("#your_element_id").hide()

类似的问题是here

关于javascript - 如果在 iframe 中显示/隐藏 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18962112/

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