jQuery 在 debounce 方法执行之前调用动画

jQuery call animation before debounce method executes

我有一段代码如下:

$('.cardButton').click($.debounce(1500, function () {
    console.log("OK");
}));

这种情况下的去抖效果非常好..

但是 - 我需要添加动画功能,它将在去抖动发生之前替换“.cardButton”元素...

做这样的事情:

 $('.cardButton').click($.debounce(1500, function () {
        StartAnimationLoader();
        console.log("OK");
    }));
// In this  case - animation starts as  soon as console writes out "OK" ... 

或像下面这样:

   $('.cardButton').click(function(){
       StartAnimationLoader();
       $.debounce(1500, function () {
           
            console.log("OK");
        })
});

// When I execute code like this - there is nothing written in the console... - thus this method doesn't works

我需要在去抖动发生之前执行动画...

我做错了什么?

有人可以帮我吗?

向同一个元素添加第二个(或更多)事件处理程序将触发两个事件(除非已停止),因此您可以通过使用两个单独的事件处理程序来创建两个操作:

// existing debounce fire only after user stops clicking 
$('.cardButton').click($.debounce... ); 

// additional event will fire on every click
$(".cardButton").click(function() { StartAnimationloader() });