JavaScript:在 IE 中使用 Frames/iFrames
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试等待窗口的
load
事件,它会等待所有 iframe 加载完毕。Try waiting for window's
load
event, it waits until all iframes have loaded.