您好,登錄后才能下訂單哦!
小編給大家分享一下javascript函數節流和防抖的應用場景有哪些,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
throttle 節流
事件觸發到結束后只執行一次。
應用場景
觸發mousemove事件的時候, 如鼠標移動。
觸發keyup事件的情況, 如搜索。
觸發scroll事件的時候, 譬如鼠標向下滾動停止時觸發加載數據。
coding
方法1 防抖
// function resizehandler(fn, delay){ // clearTimeout(fn.timer); // fn.timer = setTimeout(() => { // fn(); // }, delay); // } // window.onresize = () => resizehandler(fn, 1000);
方法2 閉包 防抖
function resizehandler(fn, delay){ let timer = null; return function() { const context = this; const args=arguments; clearTimeout(timer); timer = setTimeout(() => { fn.apply(context,args); }, delay); } } window.onresize = resizehandler(fn, 1000);
debounce 防抖
事件出發后一定的事件內執行一次。
應用場景
window 變化觸發resize事件是, 只執行一次。
電話號碼輸入的驗證, 只需停止輸入后進行一次。
coding
function resizehandler(fn, delay, duration) { let timer = null; let beginTime = +new Date(); return function() { const context = this; const args = arguments; const currentTime = +new Date(); timer && clearTimeout(timer); if ((currentTime - beginTime) >= duration) { fn.call(context, args); beginTime = currentTime; } else { timer = setTimeout(() => { fn.call(context, args) }, delay); } } } window.onresize = resizehandler(fn, 1000, 1000);
看完了這篇文章,相信你對“javascript函數節流和防抖的應用場景有哪些”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。