获得徽章 4
- 其实真的没必要在网上炫耀,就好像我8月10日要去看许嵩演唱会还是1618内场,看许嵩演唱会这件事没必要天天提,因为我知道8月10日要看许嵩演唱会还是1618内场的人多得是,天天提8月10日看许嵩演唱会还是1618内场就显得好像只有我8月10日要去看许嵩演唱会还是1618内场一样,其实不只是我要去看8月10日许嵩演唱会还是1618内场,别人也要去看8月10日许嵩演唱会还是1618内场,我8月10日看许嵩演唱会还是1618内场看就看了呗,就这样吧,反正我8月10日要去看许嵩演唱会还是1618内场了!展开226
- #每天一个知识点#
js 实现防抖和节流函数
1. 防抖函数(Debounce)
function debounce(func, delay) {
let timer;
return function(...args) {
const context = this;
clearTimeout(timer);
timer = setTimeout(() => {
func.apply(context, args);
}, delay);
};
}
// 使用示例
window.addEventListener('resize', debounce(() => {
console.log('Window resized');
}, 500));
2. 节流函数(Throttle)
function throttle(func, interval) {
let lastTime = 0;
return function(...args) {
const now = Date.now();
if (now - lastTime >= interval) {
func.apply(this, args);
lastTime = now;
}
};
}
// 使用示例
window.addEventListener('scroll', throttle(() => {
console.log('Window scrolled');
}, 500));展开评论4
![[看]](http://lf-web-assets.juejin.cn/obj/juejin-web/xitu_juejin_web/img/jj_emoji_97.39cdc9f.png)
![[思考]](http://lf-web-assets.juejin.cn/obj/juejin-web/xitu_juejin_web/img/jj_emoji_15.f58c082.png)
![[不失礼貌的微笑]](http://lf-web-assets.juejin.cn/obj/juejin-web/xitu_juejin_web/img/jj_emoji_16.9d17f6d.png)