码迷,mamicode.com
首页 > Web开发 > 详细

js scroll 滚动连续多次触发事件只执行一次

时间:2017-03-24 19:10:46      阅读:719      评论:0      收藏:0      [点我收藏+]

标签:logs   blog   scroll   class   触发事件   als   连续   var   cli   

(function() {
    var finished = true;
    function loadData() {
        //xxxx
        finished = true;
    }
    dom.onscroll = function() {
        if(finished && this.scrollHeight - this.clientHeight == this.scrollTop) {
            finished = false;
            loadData();
        }
    }
})();

 

js scroll 滚动连续多次触发事件只执行一次

标签:logs   blog   scroll   class   触发事件   als   连续   var   cli   

原文地址:http://www.cnblogs.com/silences/p/6612805.html

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