gpt4 book ai didi

javascript - 如何检查 iframe 是否正在加载元素?

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

我有一些第 3 方代码(知识库),我需要将其加载到我网站的 iframe 中,以便我可以在弹出窗口模式中显示它,但是当通过弹出窗口加载时,我需要隐藏一些元素。因为它来自不同的域,所以我无法在主站点上运行任何代码来隐藏元素,这意味着我的解决方案是有条件地从第 3 方应用程序中隐藏该代码(我可以修改显示 html/js/css来自第 3 方)。

有什么方法可以在第 3 方代码上使用 js 或 css 运行检查,以检查它是否被加载到 iframe 中?

最佳答案

通过iframe中的第三方JS,可以查看window.parent属性以查看它是否嵌入到其他页面中。

来自 MDN for window.parent :

When a window is loaded in an <iframe>, <object>, or <frame>, its parent is the window with the element embedding the window.

If a window does not have a parent, its parent property is a reference to itself.

if (window.parent !== window) {
// this window is embedded into something
}

关于javascript - 如何检查 iframe 是否正在加载元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31215433/

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