gpt4 book ai didi

jquery - 检测资源何时通过ajax加载

转载 作者:行者123 更新时间:2023-12-01 03:29:44 24 4
gpt4 key购买 nike

我最近问如何检测页面的所有资源(例如图像和样式表)何时已加载。答案回来了,使用$(window).load(); jQuery 中的方法。

我现在的问题是如何检测内容何时通过 AJAX 加载完成。 AJAX 将一些 img 元素注入(inject)到 DOM 中...我如何知道这些图像何时完成加载?

最佳答案

$.get()$.post() 函数中,您可以提供 ajax 请求完成时将调用的函数的名称。例如:

$.get("something.php",{data:'test'},foo);

function foo()
{
// This function will be called when the request has completed
}

或者:

$.get("something.php",{data:'test'},function()
{
//This function will be called in the same way
}

);

关于jquery - 检测资源何时通过ajax加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/914492/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com