Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有某种方法可以让我使用其中的 iframe 在页面上执行操作,例如,通过单击框架中的链接,它从框架所在的页面中隐藏了 div。这可能吗?
如果您的主文档和 iframe 文档在同一个域中,则可以访问框架内的元素:
document.frames['frame-name'].contentDocument.getElementById('elemId').style.display = 'none';
或访问您的父文档
window.parent.contentDocument.getElementById('elemId').style.display = 'none';