這篇文章帶給大家的內容是關於節流閥和去抖動的基本實現方法介紹,有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。
節流閥throttle
觸發的事件以週期的形式去執行,而非實時。如滴水的水龍頭。
function throttle (fn, delay) { // 利用闭包变量时效性 let timeout let arg return function () { arg = arguments if (!timeout) { timeout = setTimeout(() => { fn.apply(this, arg) timeout = null }, delay) } } } // demo /* var test = throttle(function (a) {console.log(a)}, 1000) test(1) // 不执行 test(2) // 不执行 test(3) => 3 test = null // 不需要时释放内存 */
去抖動debounce
事件最後一次觸發的N毫秒後觸發,如電梯門。
function debounce (fn, delay){ let timeout return function(){ const args = arguments clearTimeout(timeout) timeout = setTimeout(() => { fn.apply(this, args) }, delay) } } // 用法同throttle
以上是節流閥與去抖動的基本實作方法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!