美文网首页
高阶函数--节流功能

高阶函数--节流功能

作者: 摇裤儿 | 来源:发表于2021-03-20 01:08 被阅读0次
let btnName = document.getElementById("btn");
  btnName.onclick = throttle(function () {
    console.log(1);
  }, 2000);
  function throttle(fn,wait) {
    let timer;
    return function (...args) {
      if (timer) return;
      timer = setTimeout(() => (timer = null), wait);
      return fn(args);
    };
  }

相关文章

网友评论

      本文标题:高阶函数--节流功能

      本文链接:https://www.haomeiwen.com/subject/rtsicltx.html