Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 html 页面,其中有多个 JQuery Ajax 调用,如 get、post 等。现在我想监视 ajax 调用,哪个调用处于哪个状态,我不想使用“成功”、“错误”方法. 有没有其他方法可以监控页面中的所有 Ajax 调用。
问候, Ehsan
您可以为全局所有 ajax 调用配置成功。
$.ajaxComplete(function() { alert('it worked'); });
将ajax请求存储在变量中
var req1 = $.ajax({});
你也可能需要这个
var my_var; $.ajax({ beforeSend:function(x){my_var=x;} });