JavaScript:在 IE 中使用 Frames/iFrames

发布于 2024-12-13 10:26:04 字数 142 浏览 2 评论 0原文

我想在 iFrame 或 Frame 加载后执行 JavaScript 代码。 document.onReady 在页面上渲染框架之前执行,因此我无法使用它。有什么建议吗?

我找到了一个名为 FrameReady 的第三方插件,但它在 IE 中不起作用。

I want to execute JavaScript code once my iFrames or Frames load. document.onReady executes before the frames are rendered on the pages so I cannot use that. Any suggestions?

I found a 3rd party plugin called FrameReady but it does not work in IE.

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

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

发布评论

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

评论(1

木有鱼丸 2024-12-20 10:26:04

尝试等待窗口的 load 事件,它会等待所有 iframe 加载完毕。

$(window).load(function(){
    // images and iframes have loaded
})

Try waiting for window's load event, it waits until all iframes have loaded.

$(window).load(function(){
    // images and iframes have loaded
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文