节流函数
$(document).ready(function(){
var timer =null//必须有,省略节流失效
$(window).resize(function(){
clearTimeout(timer)
timer = setTimeout(function(){$("span").text(x+=1)},1300);
});
});
Posted 黄先森
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了节流函数相关的知识,希望对你有一定的参考价值。
$(document).ready(function(){
var timer =null//必须有,省略节流失效
$(window).resize(function(){
clearTimeout(timer)
timer = setTimeout(function(){$("span").text(x+=1)},1300);
});
});
以上是关于节流函数的主要内容,如果未能解决你的问题,请参考以下文章