• 防抖,节流写法


    <body>
      <div id="app">
        <button class="btn">我是防抖函数</button>
      </div>
      <script>
        document.querySelector('.btn').addEventListener('click',debounce(handle,1000))
        function debounce(fn,t){
          let time = null
          return function(){
            if(time != null){
              clearTimeout(time)
            }
            time = setTimeout(fn,t)
          }
        }
        function handle(){
          console.log(1111)
        }
      </script>
    </body>
     
     
     
    <body>
        <div id="app">
            <button class="btn">我是节流函数</button>
        </div>
        <script>
            document.querySelector('.btn').addEventListener('click',throttle(handle,2000))
            function throttle(fn,t){
                let flag = true
                return function(){
                    if(!flag)return
                    flag = false
                    setTimeout(()=>{
                        fn()
                        flag = true
                    },t)
                }
            }
            function handle(){
                console.log(111)
            }
        </script>
    </body>
     
    写几遍你会感谢我的
  • 相关阅读:
    try,except,finally的用法
    python实现蓝牙通信
    分布式全局ID的几种生成方案
    为什么要两次调用encodeURI来解决乱码问题
    jenkins配置到gitlab拉代码
    查看IOS-app证书到期时间
    使用SSH方式实现Git远程连接GitHub/gitlab
    Git 分支
    jenkins构建后操作archive the artfacts的用法
    MAC 安装jenkins
  • 原文地址:https://www.cnblogs.com/MDGE/p/10385339.html
Copyright © 2020-2023  润新知