跳至主要內容

防抖与节流函数

Yang2025年1月10日大约 3 分钟JavaScript

防抖和节流的作用都是在高频事件中防止函数被多次调用,是一种性能优化的方案

区别

防抖函数

触发高频事件后一段时间(wait)只会执行一次函数,如果指定时间(wait)内高频事件再次被触发,则重新计算时间。

// 防抖函数
function debounce(func, wait) {
  let timeout = null
  return function () {
    let context = this
    let args = arguments
    if (timeout) clearTimeout(timeout)
    timeout = setTimeout(() => {
      func.apply(context, args)
    }, wait)
  }
}

节流函数

规定在一个单位时间内,只能触发一次函数。如果这个单位时间内触发多次函数,只有一次生效

// 节流函数
function throttle(func, wait) {
  let timeout = null
  return function () {
    let context = this
    let args = arguments
    if (!timeout) {
      timeout = setTimeout(() => {
        timeout = null
        func.apply(context, args)
      }, wait)
    }
  }
}

应用场景

常见的应用场景都是使用高频事件来调用函数的过程当中,比如应用于 window 对象的 resize、scroll 事件,拖拽时的 mousemove 事件,文字输入、自动完成的 keyup 事件。

防抖应用场景

节流的应用场景

示例

<p>
  说明:鼠标在以下元素不断移动,将会不断执行一个数值累加事件,但中间分别加入了防抖和节流函数。
</p>
<h2>防抖</h2>
<p>在鼠标停止移动后300ms执行一次数值累加事件。</p>
<div id="content">0</div>
<h2>节流</h2>
<p>在鼠标移动过程中,每300ms执行一次数值累加事件。</p>
<div id="content2">0</div>
div {
  height: 150px;
  line-height: 150px;
  text-align: center;
  color: #fff;
  background-color: #ccc;
  font-size: 80px;
}
h2 {
  margin: 10px 0;
}
p {
  color: #666;
  margin: 0;
}
// 防抖函数
function debounce(func, wait) {
  let timeout = null
  return function () {
    let context = this
    let args = arguments
    if (timeout) clearTimeout(timeout)
    timeout = setTimeout(() => {
      func.apply(context, args)
    }, wait)
  }
}

// test debounce
let num = 1
let content = document.getElementById('content')
function count() {
  content.innerHTML = num++
}
content.onmousemove = debounce(count, 300)

// 节流函数
function throttle(func, wait) {
  let timeout = null
  return function () {
    let context = this
    let args = arguments
    if (!timeout) {
      timeout = setTimeout(() => {
        timeout = null
        func.apply(context, args)
      }, wait)
    }
  }
}

// test throttle
let num2 = 1
let content2 = document.getElementById('content2')
function count2() {
  content2.innerHTML = num2++
}
content2.onmousemove = throttle(count2, 300)