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

函数节流

时间:2015-08-04 22:34:06      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

http://www.alloyteam.com/2012/11/javascript-throttle/

1. 必须用context传递this,否则setTimeout中this为window对象

        function fn(){}
        var throttle=function(fn,delay)
        {
            var timer=null;
            return function()
            {
                var context=this,args=arguments;
                clearTimeout(timer);
                timer=setTimeout(function()
                {
                    fn.apply(context,args);
                    console.log(context);//input
                    console.log(this);//window
                },delay);
            };
        };
        var btn=document.getElementById(‘my-btn‘);
        btn.addEventListener(‘click‘,throttle(fn,50),false);

 

函数节流

标签:

原文地址:http://www.cnblogs.com/webfuryroad/p/4703283.html

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