jquery:当文档位于框架中并且包含带有图像映射的大图像时,如何测试就绪?

发布于 2024-09-01 11:26:39 字数 135 浏览 8 评论 0原文

我遇到了一些问题,我认为这些问题与文档(在框架内)尚未完全准备好有关,并且想知道使用 jQuery 1.3.2 版本测试“准备就绪”的最佳实践是什么我正在使用的特定插件需要。

另外,测试应该在设置框架集的文档中还是在框架集加载的文档中完成?

I am encountering problems which I believe to be related to the document (inside a FRAME) not being quite ready to go, and would like to know what the best practices are for testing for "ready" using jQuery 1.3.2 -- the version required for a particular plug-in that I'm using.

Also, should the test be done in the document that sets up the frameset or in the document that gets loaded by the frameset?

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

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

发布评论

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

评论(1

轻许诺言 2024-09-08 11:26:39

如果您只需等待图像加载,是否可以使用图像的 onload 事件处理程序?

var imgMap = new Image();
....
imgMap.onload = function() {
    ...
}

If you're just having to wait for the image to load, could you just use the image's onload event handler instead?

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