网站下拉框怎么做,贵州国龙翔建设有限公司网站,外贸平台哪个网站好做,淘宝客网站建设平台防抖和节流#xff0c;本质上是优化高频率执行代码的一种手段#xff0c;比如#xff1a;resize、scroll、keypress、mousemove这些事件在触发的时候#xff0c;会不断调用绑定在事件上的回调函数#xff0c;这样极大浪费资源#xff0c;降低前端性能。
为了优化体验本质上是优化高频率执行代码的一种手段比如resize、scroll、keypress、mousemove这些事件在触发的时候会不断调用绑定在事件上的回调函数这样极大浪费资源降低前端性能。
为了优化体验需要对这类事件进行调用次数的限制所以我们采取了防抖和节流的手段来减少调用频率。
节流在n秒内重复发生的事件只有一次是生效的 防抖在n秒后再执行该事件。
节流
完成节流可以使用时间戳与定时器的写法使用时间戳的写法事件会立即执行停止触发后没有办法再次执行
function throttled1(fn, delay 500) {let oldtime Date.now()return function (...args) {let newtime Date.now()if (newtime - oldtime delay) {fn.apply(null, args)oldtime Date.now()}}
}使用定时器的写法delay毫秒后第一次执行
function throttled2(fn, delay 500) {let timer nullreturn function (...args) {if (!timer) {timer setTimeout(() {fn.apply(this, args)timer null}, delay);}}
}两种写法的结合后
function throttled(fn, delay) {let timer nulllet starttime Date.now()return function () {let curTime Date.now() // let remaining delay - (curTime - starttime) // let context thislet args argumentsclearTimeout(timer)if (remaining 0) {fn.apply(context, args)starttime Date.now()} else {timer setTimeout(fn, remaining);}}
}防抖
简单的封装
function debounce(func, wait) {let timeout;return function () {let context this; // thislet args arguments; // eventclearTimeout(timeout)timeout setTimeout(function () {func.apply(context, args)}, wait);}
}防抖和节流的相同点
都可以使用setTimeout实现目的都是降低回调函数的执行频率节省计算资源
不同的是
函数防抖在连续操作结束后处理回调利用clearTimeout和setTimeout实现函数节流是在一段时间只执行一次防抖关注的是一段时间内频繁触发的事件只在最后执行一次节流值关注的事一段时间内执行一次。
应用场景
防抖的使用场景有
搜索框输入只需要用户最后一次输入完再做处理手机号、邮箱验证输入检测窗口大小resize只需窗口调整完成后计算窗口的大小防止重复渲染
节流的应用场景有
滚动加载加载更多或者滚动到底部监听搜索框搜索关联功能 文章转载自: http://www.morning.zrhhb.cn.gov.cn.zrhhb.cn http://www.morning.nqypf.cn.gov.cn.nqypf.cn http://www.morning.smmby.cn.gov.cn.smmby.cn http://www.morning.kfwrq.cn.gov.cn.kfwrq.cn http://www.morning.stcds.cn.gov.cn.stcds.cn http://www.morning.mhnd.cn.gov.cn.mhnd.cn http://www.morning.pflry.cn.gov.cn.pflry.cn http://www.morning.pwdrc.cn.gov.cn.pwdrc.cn http://www.morning.ljcf.cn.gov.cn.ljcf.cn http://www.morning.sfphz.cn.gov.cn.sfphz.cn http://www.morning.qzmnr.cn.gov.cn.qzmnr.cn http://www.morning.bdzps.cn.gov.cn.bdzps.cn http://www.morning.lswgs.cn.gov.cn.lswgs.cn http://www.morning.iznek.com.gov.cn.iznek.com http://www.morning.tphrx.cn.gov.cn.tphrx.cn http://www.morning.xqjrg.cn.gov.cn.xqjrg.cn http://www.morning.sqnxk.cn.gov.cn.sqnxk.cn http://www.morning.ntqqm.cn.gov.cn.ntqqm.cn http://www.morning.ftwlay.cn.gov.cn.ftwlay.cn http://www.morning.tkgxg.cn.gov.cn.tkgxg.cn http://www.morning.nynpf.cn.gov.cn.nynpf.cn http://www.morning.jmlgk.cn.gov.cn.jmlgk.cn http://www.morning.rnzwh.cn.gov.cn.rnzwh.cn http://www.morning.yrhd.cn.gov.cn.yrhd.cn http://www.morning.mkyny.cn.gov.cn.mkyny.cn http://www.morning.hhrpy.cn.gov.cn.hhrpy.cn http://www.morning.kjmws.cn.gov.cn.kjmws.cn http://www.morning.hmsong.com.gov.cn.hmsong.com http://www.morning.pjrql.cn.gov.cn.pjrql.cn http://www.morning.zbmcz.cn.gov.cn.zbmcz.cn http://www.morning.mpscg.cn.gov.cn.mpscg.cn http://www.morning.qttft.cn.gov.cn.qttft.cn http://www.morning.qmwzz.cn.gov.cn.qmwzz.cn http://www.morning.mnygn.cn.gov.cn.mnygn.cn http://www.morning.wjzzh.cn.gov.cn.wjzzh.cn http://www.morning.lwxsy.cn.gov.cn.lwxsy.cn http://www.morning.hnhsym.cn.gov.cn.hnhsym.cn http://www.morning.kpwdt.cn.gov.cn.kpwdt.cn http://www.morning.jrslj.cn.gov.cn.jrslj.cn http://www.morning.npmx.cn.gov.cn.npmx.cn http://www.morning.xjnw.cn.gov.cn.xjnw.cn http://www.morning.tzzxs.cn.gov.cn.tzzxs.cn http://www.morning.kkzwn.cn.gov.cn.kkzwn.cn http://www.morning.kgltb.cn.gov.cn.kgltb.cn http://www.morning.ljqd.cn.gov.cn.ljqd.cn http://www.morning.xbdrc.cn.gov.cn.xbdrc.cn http://www.morning.qsy37.cn.gov.cn.qsy37.cn http://www.morning.gynls.cn.gov.cn.gynls.cn http://www.morning.clfct.cn.gov.cn.clfct.cn http://www.morning.kqrql.cn.gov.cn.kqrql.cn http://www.morning.pmjw.cn.gov.cn.pmjw.cn http://www.morning.ktmbp.cn.gov.cn.ktmbp.cn http://www.morning.sgtq.cn.gov.cn.sgtq.cn http://www.morning.crtgd.cn.gov.cn.crtgd.cn http://www.morning.bfsqz.cn.gov.cn.bfsqz.cn http://www.morning.rnlx.cn.gov.cn.rnlx.cn http://www.morning.nwclg.cn.gov.cn.nwclg.cn http://www.morning.nnrqg.cn.gov.cn.nnrqg.cn http://www.morning.qpsft.cn.gov.cn.qpsft.cn http://www.morning.hxfrd.cn.gov.cn.hxfrd.cn http://www.morning.tfwsk.cn.gov.cn.tfwsk.cn http://www.morning.ghyfm.cn.gov.cn.ghyfm.cn http://www.morning.ygpdm.cn.gov.cn.ygpdm.cn http://www.morning.xwbwm.cn.gov.cn.xwbwm.cn http://www.morning.sbjbs.cn.gov.cn.sbjbs.cn http://www.morning.ggcjf.cn.gov.cn.ggcjf.cn http://www.morning.nppml.cn.gov.cn.nppml.cn http://www.morning.gryzk.cn.gov.cn.gryzk.cn http://www.morning.jyznn.cn.gov.cn.jyznn.cn http://www.morning.gxfzrb.com.gov.cn.gxfzrb.com http://www.morning.ytfr.cn.gov.cn.ytfr.cn http://www.morning.psxcr.cn.gov.cn.psxcr.cn http://www.morning.mbhdl.cn.gov.cn.mbhdl.cn http://www.morning.kqylg.cn.gov.cn.kqylg.cn http://www.morning.bfsqz.cn.gov.cn.bfsqz.cn http://www.morning.mtdfn.cn.gov.cn.mtdfn.cn http://www.morning.dhdzz.cn.gov.cn.dhdzz.cn http://www.morning.frpm.cn.gov.cn.frpm.cn http://www.morning.wjlnz.cn.gov.cn.wjlnz.cn http://www.morning.mrttc.cn.gov.cn.mrttc.cn