函数防抖

// 注册

function debounce(fn, wait = 300) {
    // 防抖
    return (() => {
        if (timer != null) {
            clearTimeout(timer);
        }
        timer = setTimeout(fn, wait);
    })()
}

// 调用

debounce(() => {
                setVodHTML(area2.curDomIndex)
            }, 600)
上一篇:vue节流实现


下一篇:lodash防抖