我如何知道 AJAX 加载的内容何时完成图像加载?

发布于 2024-07-18 06:33:41 字数 174 浏览 6 评论 0原文

我正在从 AJAX 请求加载 HTML,以及其中的一些 img 标记。

我需要知道 AJAX 中加载的图像何时完全加载以调整容器大小。 我不知道结果中有多少张图像,所以我不能简单地检查 .complete 值。

你知道这个问题的解决方案吗?

I'm loading HTML from an AJAX request, and some img tags in it.

I need to know when the images loaded in the AJAX are fully loaded to resize the container.
I don't know how many images are in the result, so I can't simply check the .complete value.

Do you know a solution for this?

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

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

发布评论

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

评论(3

你的他你的她 2024-07-25 06:33:42

如果您使用 jQuery,则 $(window).load() 命令可以设置一个在加载所有图像后调用的函数,如下所示:

$(window).load(
    function() {
        // weave your magic here.
    }
);

如果您不使用 jQuery,当我想要它的一点点功能时,我会做我已经做过的事情:下载它并检查源代码以了解它是如何实现的。 然后就这样做:-)

If you're using jQuery, the $(window).load() command can set up a function to be called once all the images are loaded, as follows:

$(window).load(
    function() {
        // weave your magic here.
    }
);

If you're not using jQuery, I'd just do what I've done when I want a little bit of its functionality: download it and examine the source to see how it does it. Then do that :-)

抱着落日 2024-07-25 06:33:42

好的,多亏了 Pax,我找到了解决方案。

在 ajax 请求的 success 事件(使用 jQuery)中,我添加了以下代码:


$('img', this).load(function() {
    resize_element(this);
});

谢谢你们!

Ok, thanks to Pax, I've found the solution.

On the success event of the ajax request (using jQuery), I've added the following code:


$('img', this).load(function() {
    resize_element(this);
});

Thanks both of you!

是伱的 2024-07-25 06:33:42

XMLHTTPrequests 具有可用于确定加载何时完成的属性。 如果您直接使用 JavaScript,则需要为 onreadystatechange 事件分配一个函数。 每次状态改变时都会调用此方法。 状态存储在 ReadyState 中,如下所示:

  1. 未启动
  2. 加载
  3. 已加载
  4. 交互
  5. 完成

在您的函数中,您检查状态是否为 4 并调用其他所需函数。

jQuery 有一些事件可以告诉您某些事情何时发生。 查看 AJAX 文档

XMLHTTPrequests have properties that you can use to determine when the load has completed. If you are using JavaScript directly, you would need to assign a function to the onreadystatechange event. This is called each time that the state changes. The states are stored in ReadyState and are:

  1. Uninitiated
  2. Loading
  3. Loaded
  4. Interactive
  5. Complete

In your function, you check that the status is 4 and call the other required functions.

jQuery has events that tell you when certain things have occurred. View the AJAX Documentation

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