作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前,我们正在使用 ajaxComplete 监听器,它会在每次 ajax 调用发生后调用我提到的特定函数。
$(document).ajaxComplete(function () {
someFunction();
})
有一种情况,在特定的 ajax 调用之后,我想做一些事情而不是调用 someFunction()。
有没有办法从 ajaxComplete 中排除特定的 ajax 调用?
最佳答案
这是一个小例子,你可以如何在 $.ajaxComplete 中使用设置参数
$.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/
我是一名优秀的程序员,十分优秀!