鼠标滑到底部时自动加载数据

          //签到列表加载数据 鼠标滑到底部时自动分页
            $("#Check_in_list").scroll(function () {
                var $this = $(this),
                    viewH = $(this).height(),//可见高度
                    contentH = $(this).get(0).scrollHeight,//内容高度
                    scrollTop = $(this).scrollTop();//滚动高度
                //if(contentH - viewH - scrollTop <= 100) { //到达底部100px时,加载新内容
                if (scrollTop / (contentH - viewH) == 1) { //到达底部100px时,加载新内容
                    // 这里加载数据..
                }
            });

 

posted @ 2017-12-19 13:47  妖狐鬼魅  阅读(278)  评论(0)    收藏  举报