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

高阶函数 - 函数节流

时间:2017-07-11 17:46:14      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:elf   ons   cti   clear   param   nbsp   timeout   执行   return   

        /**
         * 函数节流 - 限制函数被频繁调用
         * @param  {Function} fn       [需要执行的函数]
         * @param  {[type]}   interval [限制多长的时间再重复执行fn]
         */
        var throttle = function(fn, interval) {
            var __self = fn,
                timer,
                firstTime = true;

            return function() {
                var args = arguments,
                    __me = this;

                if (firstTime) {
                    __self.apply(__me, args);
                    return firstTime = false;
                };

                if (timer) {
                    return false;
                };

                timer = setTimeout(function() {
                    clearTimeout(timer);
                    timer = null;
                    __self.apply(__me, args);
                }, interval || 500);
            };
        };

        // test
        function A() {
            console.log(‘A‘);
        };
        var A2 = throttle(A, 1000);

        setInterval(A2, 100);

 

高阶函数 - 函数节流

标签:elf   ons   cti   clear   param   nbsp   timeout   执行   return   

原文地址:http://www.cnblogs.com/sorrowx/p/7151373.html

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