jquery – 定位包含AjaxStart / Stop的特定ajax调用

前端之家收集整理的这篇文章主要介绍了jquery – 定位包含AjaxStart / Stop的特定ajax调用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在我的页面上的ajax调用期间显示加载微调器.我想针对不同的ajax调用显示不同的微调器.事实上,由于ajaxStart是一个全局事件,所有ajax调用最终会同时显示所有微调器.

这工作…它将类“加载”添加到包含微调器的隐藏div并显示它.

$(document).bind("ajaxStart",function () {
    $body.addClass("loading");
});

$(document).bind("ajaxStop",function () {
    $body.removeClass("loading");
});

现在从其他堆栈的答案我已经看到你可以添加名称空间到ajaxstart / stop
(jQuery should I use multiple ajaxStart/ajaxStop handling)

……沿着这条线

$(document).bind("ajaxStart.secondCall",function () {
    $body.addClass("loading2");
});

$(document).bind("ajaxStop.secondCall",function () {
    $body.removeClass("loading2");
});

但这并不适用于目前的形式.任何指导将不胜感激…

更新:

作为ILYAS解决方案的补充并基于他的指导我在AJAX CALL中实现了AJAX START功能….

function sendResponse(thread_id){
        $(document).off(".reference_call");
         $(document).on("ajaxStart.secondCall",function () {
         $('.spinner').show();
      });
 $.ajax({
    url: 'someURL.PHP',type: 'post',data: {
              //data
         },success: function(data) {
            $(document).on("ajaxStop.secondCall",function () {
               $('.spinner').hide();
            });
                    //do stuff....

                    } else {

                     //do stuff....
                    }
              }
        });
  return false;
}

解决方法

因此,正如在与问题相关的讨论中提到的那样,您可以使用自定义命名空间绑定和取消绑定ajax事件.这是简单的 example演示这种方法.在代码的第一部分中,您使用.firstCall命名空间绑定到ajax事件,如下所示:
$(document).on("ajaxStart.firstCall",function () {
    $('.spinner1').show();
});
$(document).on("ajaxStop.firstCall",function () {
    $('.spinner1').hide();
});
// then goes your ajax call

稍后在代码中,当您需要使用不同的微调器发送第二个ajax时,必须从.firstCall命名空间解除绑定并绑定到.secondCall,如下所示:

$(document).off(".firstCall");
$(document).on("ajaxStart.secondCall",function () {
    $('.spinner2').show();
});
$(document).on("ajaxStop.secondCall",function () {
    $('.spinner2').hide();
});
// then goes your second ajax call

作为替代方案,您可以考虑使用一组全局ajax事件处理程序,并将您的逻辑移动到在这些回调中显示/隐藏的微调器,但这实际上取决于它是什么逻辑.

原文链接:https://www.f2er.com/jquery/175754.html

猜你在找的jQuery相关文章