Home  >  Article  >  Web Front-end  >  Share a jq paging plug-in

Share a jq paging plug-in

一个新手
一个新手Original
2017-09-29 09:59:191595browse

The paging function is often used in work. In order to facilitate the encapsulation of a more general paging plug-in, it is open sourced and easy to use.

Example:

Function introduction:

1. Support static (hard-coded data, fake paging), dynamic paging (Ajax dynamic request data);
2. Use functions according to your needs: Home and last pages, top and bottom pages, display number selector, total page number display, quick jump;
3. It does not have its own style, developers can completely customize the style;
4. Simple (easy to use, The code is simple);

How to use:

The first step

Introduce jquery and ChPaging libraries into the page


 
 

The second step

Create a ChPaging instance and operate the instance association list display. A paging container node must be created.


//html
    //与分页关联的列表节点

    //分页容器节点

    1. Dynamic paging, use ajax to request instant data


    var paging = new ChPaging($("pagingId"),{
            xhr : {//与jq的ajax方法属性值相似。不同点:不能设置success回调
                url : '服务端请求接口地址'
                data : {请求参数}
                ...
            },
            xhrSuccess : function(data){//ajax中的success回调
                return {data : data.lsit, count : data.count}
            }
            reloadPage : function(msg,data){
                //msg 返回属性
                //data 当前分页数据,数组。
                for(var i = 0; i < data.length; i++){
                    $("#list").append(... data[i] ...);
                }
            }
        })

    2. Static paging. (The data is cached on the front end, and there is no need to request data every time you click on the page, which is often called false paging)


    var data = ["文章1","文章2","文章3","文章4","文章5","文章6"]
        var paging = new x
            data : data,
            limit : 2,
            reloadPage : function(msg,data){
                //msg 返回属性
                //data 当前分页数据,数组。
                for(var i = 0; i < data.length; i++){
                    $("#list").append(... data[i] ...);
                }
            }
        })


    The above is the detailed content of Share a jq paging plug-in. For more information, please follow other related articles on the PHP Chinese website!

    Statement:
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn