Skip to content

实现 throttle(节流)函数

Posted on:2021年7月7日 at 00:13

高频时间触发,但n秒内只会执行一次,所以节流会稀释函数的执行频率。

const throttle = (fn, time) => {
  let flag = true;
  return function () {
    if (!flag) return;
    flag = false;
    setTimeout(() => {
      fn.apply(this, arguments);
      flag = true;
    }, time);
  };
};

节流常应用于鼠标不断点击触发、监听滚动事件。

原文转自:https://fe.ecool.fun/topic/c50bec05-c350-46bd-a2a6-dd5f9a6cdf46