防抖函数和节流函数封装

本文深入探讨了JavaScript中的两种性能优化技术——防抖(debounce)和节流(throttle)。防抖函数确保在停止输入后1秒才执行回调,避免频繁触发。节流函数则限制了函数的执行频率,方法一是通过计算时间差来控制,方法二是使用setTimeout实现。这些技术在处理用户输入、滚动事件等场景中极为有效。
摘要由CSDN通过智能技术生成

1.防抖函数

// 不再输入后1秒触发函数
    function debounce(delay,callback){
        let timer
        return function (value) {
            clearTimeout(timer)
            timer = setTimeout(function () {
                callback(value)
            }, delay);
        }
    }
    function fn(value){
        console.log(value) // 回调函数
    }
    var debounceFunc = debounce(1000,fn)
    input.addEventListener('keyup',function(e){
        debounceFunc(e.targer.value)
    })

2.节流函数

// 方法一
    var btn = document.getElementById('input')
    btn.addEventListener('click', throttle(submit, 2000), false)
    function submit() {
        console.log(e, this)
    }
    function throttle(fn, delay) {
        var begin = 0
        return function () {
            var cur = new Date().getTime()
            if (cur - begin > delay) {
                fn.apply(this,arguments)
                begin = cur
            }
        }
    }
    // 方法二
    function throttle(func,delay) {
        let timerOut
        return function () {
            if (!timerOut) {
                timerOut = setTimeout(function() {
                    func()
                    timerOut = null
                }, delay);
            }
        }
    }
    function handle() {
        console.log(Math.random())
    }
    document.getElementById('button').onclick = throttle(handle,2000)

 

防抖节流是两种常用的函数优化技术,可以用来限制函数的执行频率,提高性能和用户体验。 防抖函数的作用是在短时间内连续触发同一事件时,只执行最后一次操作,而忽略之前的操作。可以用于处理频繁触发的事件,比如窗口大小改变、输入框输入等。 下面是一个简单的防抖函数封装示例: ```javascript function debounce(func, delay) { let timer = null; return function(...args) { clearTimeout(timer); timer = setTimeout(() => { func.apply(this, args); }, delay); }; } ``` 使用方式示例: ```javascript function handleInput() { // 处理输入事件 } const debouncedHandleInput = debounce(handleInput, 300); // 创建防抖函数 inputElement.addEventListener('input', debouncedHandleInput); // 绑定防抖函数到输入框的输入事件 ``` 节流函数的作用是在一定时间间隔内只执行一次操作,可以用于处理高频率触发的事件,比如滚动事件、鼠标移动事件等。 下面是一个简单的节流函数封装示例: ```javascript function throttle(func, delay) { let timer = null; return function(...args) { if (timer) return; timer = setTimeout(() => { func.apply(this, args); timer = null; }, delay); }; } ``` 使用方式示例: ```javascript function handleScroll() { // 处理滚动事件 } const throttledHandleScroll = throttle(handleScroll, 300); // 创建节流函数 window.addEventListener('scroll', throttledHandleScroll); // 绑定节流函数到窗口的滚动事件 ``` 以上是基本的防抖节流函数封装示例,可以根据实际需求进行调整和扩展。希望能对你有所帮助!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值