ES6 JS实现节流防抖[使用箭头函数与扩展运算符(...)]

知识点

  1. 箭头函数
  2. 扩展运算符(…)

这两个都是ES6新语法,网上有非常多的文章详解

防抖

// 使用定时器实现
function debounce(fn, delay) {
  let timer = null;
  return (...args) => {
    if (timer) clearTimeout(timer);
    timer = setTimeout(() => {
      fn.apply(this, args);
    }, delay);
  };
}
// 测试用,需要改变窗口大小
window.onresize = debounce(function() {
  console.log(111, arguments);
}, 500);

节流

// 1.时间戳方式
function throttle(fn, delay) {
  let pre = 0;
  return (...args) => {
    let now = new Date().getTime();
    if (now - pre > delay) {
      fn.apply(this, args);
      pre = now;
    }
  };
}
// 2.定时器方式
function throttle(fn, delay) {
  let timer = null;
  return (...args) => {
    if (!timer) {
      timer = setTimeout(() => {
        fn.apply(this, args);
        timer = null;
      },delay);
    }
  };
}
// 测试用,需要改变窗口大小
window.onresize = throttle(function () {
  console.log(111, arguments);
}, 2000);

这里所有的fn.apply(this,args)都可用fn.call(this,...args)替换

  • 2
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值