会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
마지막 그 한마디
Admin
2016年7月5日
函数节流
// (来自)JavaScript高级程序设计 不支持匿名函数 function throttle(fn, context) { clearTimeout(fn.tId); fn.tId = setTimeout(function () { fn.call(context); }, 100); } // (来自)百度 不支持匿名函数 function ...
Read More
posted @ 2016-07-05 20:03 koala_熊
Views(101)
Comments(0)
Diggs(1)
Edit