函数防抖 debounce

Posted 风吹麦浪打

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数防抖 debounce相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		
	</head>
	<body>
		
		<button class="btn">点击</button>
		<script src="jquery.min.js"></script>
		<script>
          //按钮点击出发防抖动的函数 debounce
			$(".btn").on("click",debounce(Click,1000))
			function debounce (fn, duration){  //fn(你要防止抖动的函数) duration:(毫秒数)
				 var timer = null;
				 return function (){
				 	 clearTimeout(timer)
				 	 timer=setTimeout(function(){
				 	 	fn()
				 	 },duration)
				 }
				  
			}
          //你要运行函数 function Click(){ console.log(1) //todo something } </script> </body> </html>

  

以上是关于函数防抖 debounce的主要内容,如果未能解决你的问题,请参考以下文章

js 实现一个debounce防抖函数

JS中的函数防抖(debounce)

JS进阶篇2---函数防抖(debounce)

43.Vue中使用Lodash 节流(throttle)和防抖(debounce)函数

javascript函数的节流[throttle]与防抖[debounce]

函数防抖 debounce