求教节流与防抖的实际应用代码?
$("#ul_list").on("click", "li", function(e) {
//...li指定的列表数据拉取
}
以上代码,如何加以节流、防抖,求代码及说明!!!感谢!!!
回复
1个回答

test
2024-06-28
节流
function throttle(func, delay) {
let timeoutId;
return function(...args) {
if (!timeoutId) {
func.apply(this, args);
timeoutId = setTimeout(() => {
timeoutId = null;
}, delay);
}
};
}
$("#ul_list").on("click", "li", throttle(function(e) {
// ... li指定的列表数据拉取
}, 300)); // 延迟 300 毫秒执行一次
防抖
function debounce(func, delay) {
let timeoutId;
return function(...args) {
clearTimeout(timeoutId);
timeoutId = setTimeout(() => {
func.apply(this, args);
}, delay);
};
}
$("#ul_list").on("click", "li", debounce(function(e) {
// ... li指定的列表数据拉取
}, 300)); // 延迟 300 毫秒执行,若期间有新事件则重新计时
回复

适合作为回答的
- 经过验证的有效解决办法
- 自己的经验指引,对解决问题有帮助
- 遵循 Markdown 语法排版,代码语义正确
不该作为回答的
- 询问内容细节或回复楼层
- 与题目无关的内容
- “赞”“顶”“同问”“看手册”“解决了没”等毫无意义的内容