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

          //签到列表加载数据 鼠标滑到底部时自动分页
            $("#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时,加载新内容
                    // 这里加载数据..
                }
            });
原文地址:https://www.cnblogs.com/zyx321/p/8065138.html