如何在更改函数 jQuery 上应用去抖动器?
如何在这个 jQuery 函数上应用去抖动器。到目前为止,它还没有打电话。
$('.make-ajax-call-js').on($.debounce('change', function (e) {
//whatever ajax call
}));
我的 js 文件中包含去抖动脚本。
How would one apply debouncer on this jQuery function. So far it makes no call.
$('.make-ajax-call-js').on($.debounce('change', function (e) {
//whatever ajax call
}));
I have debouncer script included in my js files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这样:
Try like this:
要解决此问题,您必须将去抖函数作为参数连同去抖时间一起传递给 jquery click 事件
To fix this, you will have to pass in the debouncing function as a parameter to the jquery click event along with the debounce time