当前,我们正在使用ajaxComplete侦听器,该侦听器正在调用每个ajax调用发生后提到的特定函数。
$(document).ajaxComplete(function () {
someFunction();
})
有一种情况是,在特定的ajax调用之后,我想做一些事情,而不是调用 someFunction()。
有没有一种方法可以从ajaxComplete中排除特定的ajax调用?
最佳答案
这是一个小示例,说明如何在$ .ajaxComplete中使用settings参数
$.ajax({
type:"GET",
url:"http://google.com"
});
$.ajax({
type:"GET",
url:"https://stackoverflow.com"
});
$(document).ajaxComplete(function(event,xhr,settings){
console.log("URL",settings.url);
if(settings.url === "https://stackoverflow.com")
{
$(".loadedPage").html("Stackoverflow loaded");
}
else if(settings.url === "http://google.com")
{
$(".loadedPage").html("Google Loaded");
}
});
希望这可以帮助!!
关于javascript - 如何从ajaxComplete事件监听器中排除特定的ajax调用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22794938/