共享 jQuery 实例时,.ready 在 iframe 中触发得太快

发布于 2024-12-23 22:04:49 字数 255 浏览 2 评论 0原文

我想避免在每个 iframe 中加载单独的 jQuery 实例。在大多数情况下,这运作良好。我遇到的问题是准备事件。它似乎无法在子 iframe 中正常工作。

<代码> 父级.$(文档).ready(函数() { // 这会在 DOM 准备好之前触发。 });

使用 window.onload 可以工作,但会在游戏后期触发。是否可以在 iframe 中触发正确的“就绪”事件,而无需加载单独的 jQuery 实例?

I am wanting to avoid loading a seperate instance of jQuery in each of many iframes. For the most part this is working well. The problem I'm having is with the ready event. It does not seem to work properly within the child iframe.


parent.$(document).ready(function () {
// this fires before the DOM is ready.
});

using window.onload works, but fires late in the game. Is it possible to get a proper 'ready' event triggered within an iframe without loading a seperate instance of jQuery ?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文