Simple jquery pagination application, jquerypagination

Source: Internet
Author: User

Simple jquery pagination application, jquerypagination

Today, due to a habit problem, it is a waste of time to record it.

Paging is often used during Web development. In my php code, the page number starts from 1 and has been written as follows:

$ Page = @ intval ($ _ GET ['page']); if ($ page <1) {$ page = 1 ;}

Then limit ( Page − 1) Success Page_size, $ page_size. Currently, the page number is a little redundant from 1.

Jquery. pagination. js is mainly usedRefreshing paginationIn fact, the application is very simple, but because of the above habits, resulting in a long time.

You can download jquery. pagination. js from here. The following are the most basic applications:

$ (". Pagination "). pagination (rows_count, {callback: load_item, prev_text: "Previous Page", next_text: "Next page", items_per_page: 10, current_page: 0 // note the value 0, pagination starts from 0 });

There are several main parameters:
Rows_count: the total number of records to be displayed.
Load_func, callback function name, used to display content
Items_per_page: 10, 10 entries per page
Current_page: 0. The page to be displayed. The page starts from 0 when it is initialized.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.