使用jquery.more.js来实现滚动加载数据

html

<body>
    <div id="more">
        <div class="single_item">
            <div class="date"></div>
            <div class="author"></div>
            <div class="title"></div>
        </div>
        <a href="javascript:;" class="get_more">点击加载</a>
    </div>
    <script src="jquery.min.js"></script>
    <script src="jquery.more.js"></script>
    <script>
        $(function() {
            $(‘#more‘).more({
                ‘address‘: ‘data.php‘
            })
        });
    </script>
</body>

php

// 连接数据库
require_once(‘connect.php‘);

$last = $_POST[‘last‘];
$amount = $_POST[‘amount‘];

$query = mysql_query("select * from article order by id desc limit $last,$amount");
while ($row = mysql_fetch_array($query)) {
    $sayList[] = array(
        ‘title‘ => $row[‘title‘],
        ‘author‘ => $row[‘id‘],
        ‘date‘ => date(‘m-d H:i‘, $row[‘addtime‘])
    );
}
echo json_encode($sayList);

接口返回的数据格式

[
  {
    "title": "xxx",
    "author": "1",
    "date": "04-04 10:34"
  },
  {
    "title": "xxx",
    "author": "1",
    "date": "04-04 09:52"
  },
  {
    "title": "xxx",
    "author": "1",
    "date": "04-04 09:18"
  },
  {
    "title": "xxx",
    "author": "1",
    "date": "04-03 23:44"
  },
  {
    "title": "xxx",
    "author": "1",
    "date": "04-03 23:09"
  },
  {
    "title": "xxx",
    "author": "1",
    "date": "04-03 22:33"
  },
  {
    "title": "xxx",
    "author": "1",
    "date": "04-03 20:25"
  },
  {
    "title": "xxx",
    "author": "1",
    "date": "04-03 08:26"
  },
  {
    "title": "xxx",
    "author": "1",
    "date": "04-02 21:56"
  },
  {
    "title": "xxx",
    "author": "1",
    "date": "04-02 08:52"
  }
]

ps:返回的数据key与class相对应

jquery.more.js

/**
 * 调用方法: $(‘#more‘).more({‘url‘:‘data.php‘});
 * amount   每次显示记录数
 * address  请求的地址
 * format   接受数据的格式
 * template html记录DIV的class属性
 * trigger  触发加载更多记录的class属性
 * scroll   是否支持滚动触发加载
 * offset   滚动触发加载时的偏移量
 * data     自定义参数
 * loading  加载时显示
 */
(function($) {
    var target = null;
    var template = null;
    var lock = false;
    var cur_last = 0;
    var variables = {
        ‘last‘ : 0
    }
    var settings = {
        ‘amount‘   : ‘10‘,
        ‘address‘  : ‘comments.php‘,
        ‘format‘   : ‘json‘,
        ‘template‘ : ‘.single_item‘,
        ‘trigger‘  : ‘.get_more‘,
        ‘scroll‘   : ‘false‘,
        ‘offset‘   : ‘100‘,
        ‘data‘     : {},
        ‘loading‘  : ‘加载中...‘
    }
    var methods = {
        init: function(options) {
            return this.each(function() {
                if (options) {
                    $.extend(settings, options);
                }
                template = $(this).children(settings.template).wrap(‘<div/>‘).parent();
                template.css(‘display‘, ‘none‘);
                $(this).append(‘<div class="loading">‘ + settings.loading + ‘</div>‘);
                template.remove();
                target = $(this);
                if (settings.scroll == ‘false‘) {
                    $(this).find(settings.trigger).bind(‘click.more‘, methods.get_data);
                    $(this).more(‘get_data‘);
                } else {
                    if ($(this).height() <= $(this).attr(‘scrollHeight‘)) {
                        target.more(‘get_data‘, settings.amount * 2);
                    }
                    $(this).bind(‘scroll.more‘, methods.check_scroll);
                }
            })
        },
        check_scroll: function() {
            if ((target.scrollTop() + target.height() + parseInt(settings.offset)) >= target.attr(‘scrollHeight‘) && lock == false) {
                target.more(‘get_data‘);
            }
        },
        debug: function() {
            var debug_string = ‘‘;
            $.each(variables, function(k, v) {
                debug_string += k + ‘ : ‘ + v + ‘\n‘;
            })
            alert(debug_string);
        },
        remove: function() {
            target.children(settings.trigger).unbind(‘.more‘);
            target.unbind(‘.more‘)
            target.children(settings.trigger).remove();

        },
        add_elements: function(data) {
            var root = target
            var counter = 0;
            if (data) {
                $(data).each(function() {
                    counter++
                    var t = template
                    $.each(this, function(key, value) {
                        if (t.find(‘.‘ + key)) t.find(‘.‘ + key).html(value);
                    })
                    if (settings.scroll == ‘true‘) {
                        root.children(‘.loading‘).before(t.html())
                    } else {
                        root.children(settings.trigger).before(t.html())
                    }
                    root.children(settings.template + ‘:last‘).attr(‘id‘, ‘more_element_‘ + ((variables.last++) + 1));
                })

            } else methods.remove()
            // target.children(‘.loading‘).css(‘display‘, ‘none‘);
            if (counter < settings.amount){
                methods.remove();
                target.children(‘.loading‘).html("已经到底了");
            }
        },
        get_data: function() {
            var ile;
            lock = true;
            target.children(".loading").css(‘display‘, ‘block‘);
            $(settings.trigger).css(‘display‘, ‘none‘);
            if (typeof(arguments[0]) == ‘number‘) {
                ile = arguments[0];
            } else {
                ile = settings.amount;
            }
            if(variables.last >= cur_last) {
                var postdata = settings.data;
                postdata[‘last‘] = variables.last;
                postdata[‘amount‘] = ile;
                $.post(settings.address, postdata, function(data){
                    $(settings.trigger).css(‘display‘, ‘block‘)
                    methods.add_elements(data)
                    lock = false;
                }, settings.format);
                cur_last = cur_last + 10;
            }
        }
    };
    $.fn.more = function(method) {
        if (methods[method]) {
            return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
        } else if (typeof method == ‘object‘ || !method) {
            return methods.init.apply(this, arguments);
        } else $.error(‘Method ‘ + method + ‘ does not exist!‘);
    }
    $(document).ready(function() {
        $(window).on(‘scroll‘, function() {
            if ($(document).scrollTop() + $(window).height() > $(document).height() - 10) {
                $(‘.get_more‘).click();
            }
        });
    });
})(jQuery)
时间: 2024-10-14 04:17:50

使用jquery.more.js来实现滚动加载数据的相关文章

前端页面实现滚动加载数据的案例

1.我们在项目中经常会有这样的需求就是需要滚动加载数据: 2.原理利用分页的原理即可实现:见下面代码 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> &l

vue2.0无限滚动加载数据插件

  做vue项目用到下拉滚动加载数据功能,由于选的UI库(element)没有这个组件,就用Vue-infinite-loading 这个插件代替,使用中遇到的一些问题及使用方法,总结作记录! 安装:npm install vue-infinite-loading –save 引入 ES6 import InfiniteLoading from 'vue-infinite-loading'; export default { components: { InfiniteLoading, }, }

iScroll.js 向上滑动异步加载数据回弹问题

iScroll是一款用于移动设备web开发的一款插件.像缩放.下拉刷新.滑动切换等移动应用上常见的一些效果都可以轻松实现. 现在最新版本是5.X,官网这里:http://iscrolljs.com/ 下面是按照官网给的Demo,写的一个异步加载数据实例: 1 <title>iScroll demo: click</title> 2 <script src="~/Scripts/iscroll5/jquery-1.10.2.js"></scrip

HTML5商城开发一 楼层滚动加载数据

对于楼层加载在以前只是个想法,从来没实现过,刚好项目中碰到,再此总结一下 场景:HTML5,局部商品列表信息滚动(局部滚动条) 1.通过jq设置subCategoryScroll的高度为屏幕显示高度(假设为100),设置productlist的高度为列表信息的实际高度(假设为300) <div id="subCategoryScroll" style="overflow: hidden; overflow-y: scroll;"> <ul clas

js文件最后加载(在window.load事件发生后再加载js文件),用于解决因jQuery等js库导致网页加载慢的问题

需引入文件:lazyload-min.js <script src="JS/lazyload-min.js" type="text/javascript"></script> 插入代码: function loadscript() { LazyLoad.loadOnce([ 'JS/touch.js', 'http://libs.baidu.com/jquery/1.2.3/jquery.min.js' ], loadComplete); }

jquery.lazyload.js实现图片懒加载

个人理解:将需要延迟加载的图片的src属性全部设置为一张相同尽可能小(目的是尽可能的少占宽带,节省流量,由于缓存机制,当浏览器加载了一张图片之后,相同的图片就会在缓存中拿,不会重新到服务器上拿)的图片,然后将图片的实际地址写在alt属性里,当鼠标往下滑动的时候得到当前显示区域内的img的lz-src,动态的就将各自的lz-src属性的值赋值给src属性,这样就实现了图片延迟加载,减轻服务器端的压力,节省本地带宽,提升了访问网页的速度 插件源码地址: https://raw.github.com/

滚动加载数据

function scrollLoad() { var ele = document.getElementById('mainListBlock'); var isLastPage = false; window.isLoading = false; var clientHeight = getClientHeight(); function getScrollTop() { return ele.scrollTop; } function getScrollHeight() { return

JQuery - 留言之后,不重新加载数据,直接显示发表内容

留言板中,发表信息的时候,使用Ajax存储到后台数据库,如果存储成功,不重新加载数据库,直接显示发表内容. 代码: var Nicehng = ''; var kkimgpath = ''; var text = ''; $(function () { if ($(document).scrollTop() != 0) { //刷新之后,回到顶部 $('body,html').animate({ scrollTop: 0 }, 300); } //点击发表留言 $("#submit")

Android第二十三期 - 256k的ListView下拉刷新和滚动加载数据

代码已经