码迷,mamicode.com
首页 > 其他好文 > 详细

函数节流

时间:2016-07-05 20:51:23      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

// (来自)JavaScript高级程序设计 不支持匿名函数
function throttle(fn, context) {
    clearTimeout(fn.tId);
    fn.tId = setTimeout(function () {
        fn.call(context);
    }, 100);
}
// (来自)百度 不支持匿名函数
function throttle(fn) {
    var args, that, timer = null;
    return function () {
        clearTimeout(timer);
        args = arguments;
        that = this;
        timer = setTimeout(function () {
            fn.call(that, args);
        }, 100);
    };
}

 

函数节流

标签:

原文地址:http://www.cnblogs.com/shanchenba/p/5644862.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!