gpt4 book ai didi

javascript - iframe 中的按钮使 div 显示在父级中

转载 作者:太空宇宙 更新时间:2023-11-04 16:13:21 25 4
gpt4 key购买 nike

所以我的 iframe 中有一个按钮可以在同一页面上打开一个 div:

<li>
<input type='button' id='hideshow2' class='radiobutton' value='Core' onclick="showDiv('#content2')">
</li>

<div id='content2' class="content2">
</div>

使用 JavaScript

<script type='text/javascript'>     
function showDiv() {
document.getElementById('content2').style.display = "block";
}
</script>

它工作得很好,但是我正在尝试获取它,以便按钮可以位于 iframe 内,按下该框架会激活父页面上的 div 显示。

这可能吗?我尝试过用谷歌搜索很多东西,但我什至 100% 不确定该用谷歌搜索什么

任何帮助将不胜感激!

最佳答案

这里应该是:

window.parent.document.getElementById('content2').style.display = "block";

关于javascript - iframe 中的按钮使 div 显示在父级中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41274051/

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