欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js防抖

程序员文章站 2022-05-14 13:28:06
...
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>定时器</title>
</head>
<body>
抖动:<input type="text" id="input">
<script>
    //debounce防抖
    function debounce(fn, delay) {
        let timer = null;
        return function () {
            clearTimeout(timer);
            timer = setTimeout(() => {
                console.log('间隔1秒执行');
            },1000)
        }
    }
    document.querySelector('#input').addEventListener('keyup', debounce())
</script>
</body>
</html>
相关标签: 防抖

上一篇: JS防抖

下一篇: js 防抖节流