开发者

Iterating anchors in jquery doesn't seem to work

Hai i am generating page numbers based on currentpage and lastpage using jquery ... Here is my function and as i am newbie i dont know how it can be done...

function generatePages(currentPage, LastPage) {
    if (LastPage <= 5) {
        var pages = '';
        for(var i=1;i<=5;i++)
        {
            pages += "<a class='page-numbers' href='#'>" + i + "</a>"
        }
        $("#PagerDiv").append(pages);
    }
    if (LastPage > 5) {
        var pages = '';
        for (va开发者_如何学Cr i = 1; i <= 5; i++) {
            pages += "<a class='page-numbers' href='#'>" + i + "</a>"
        }
        $("#PagerDiv").append(pages);
    }
}

I want the result to be like this

If it is the first page

Iterating anchors in jquery doesn't seem to work

If it is in the middle,

Iterating anchors in jquery doesn't seem to work

If it is the last page,

Iterating anchors in jquery doesn't seem to work

I have the lastPage and currentPage values please help me out getting this...


First of all, you have to find a correct algorithm for what you want to do and the function you posted shows that you don't have any.

The logic to implement could be:

  • Display page numbers from currentPage - 2 to currentPage + 2 (limited to [1, lastPage])
  • if page 1 is not is displayed, prepend "1 ..."
  • if lastPage is not displayed, append "... lastPage"

And additionally, you can add that:

  • if currentPage is greater than 1, prepend "prev"
  • if currentPage is less than lastPage, append "next"

That's for the theory. Now, for the implementation, just use jPaginate or another pagination plugin for jQuery instead...

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜