如何在更改函数 jQuery 上应用去抖动器?

How to apply debouncer on change function jQuery?

如何在此 jQuery 函数上应用去抖动器。到目前为止它没有打电话。

 $('.make-ajax-call-js').on($.debounce('change', function (e) {
//whatever ajax call
}));

我的 js 文件中包含去抖脚本。

这样试试:

$('.make-ajax-call-js').change($.debounce(1000, function(e) {
    console.log("It works!");
}));

要解决此问题,您必须将去抖动函数作为参数传递给 jquery 单击事件以及去抖动时间

$('.make-ajax-call-js').click($.debounce(250, function(e) {
    //whatever ajax call
}));