检查 iFrame 是否开始渲染或通过 Javascript 加载

发布于 2025-01-02 16:45:54 字数 149 浏览 1 评论 0原文

我知道我无法检查包含第 3 方网页的 iframe 中的内容。

我想要的很简单,当我创建一个 iframe 时,我想在页面触发加载、开始渲染、domready 或其他我可以知道 URL 正在工作的事件时获得回调(不是死链接)

知道我应该参加哪些活动吗?

I know I cannot check the content in an iframe that contains 3rd party web page.

All I want is simple, when I create an iframe, I want to get a callback when the page triger onload, or starts to render, or domready, or other events which I can know the URL is working (is not a dead link)

Anyidea which events should I hook to?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奈何桥上唱咆哮 2025-01-09 16:45:54

你可以尝试:

var iframe = document.getElementById("the_frame");
iframe.onload = function () {
    alert("hey man!");
}

You could try:

var iframe = document.getElementById("the_frame");
iframe.onload = function () {
    alert("hey man!");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文