带有 iframe 的命令页

command page with the iframe

本文关键字:命令 iframe 带有      更新时间:2023-09-26

我想知道是否有某种方法可以使用其中的 iframe 在页面上执行操作,例如通过单击框架中的链接,它从框架中隐藏了div。这可能吗?

如果您的主文档和 iframe 文档位于同一域中,则可以访问框架中的元素:

document.frames['frame-name'].contentDocument.getElementById('elemId').style.display = 'none';

或访问您的父文档

window.parent.contentDocument.getElementById('elemId').style.display = 'none';