jquery pagination插件動態(tài)分頁實例(Bootstrap分頁)
更新時間:2016年12月23日 15:27:49 作者:MAKE-IN-LEMON
這篇文章主要為大家分享了Bootstrap靜態(tài)分頁和jquery pagination插件動態(tài)分頁兩個實例,具有一定的參考價值,感興趣的小伙伴們可以參考一下
第一種Bootstrap -默認(rèn)的分頁實例,供大家參考,具體內(nèi)容如下
<!DOCTYPE html> <html> <head> <title>Bootstrap 實例 - 默認(rèn)的分頁</title> <link rel="stylesheet"> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script src="http://libs.baidu.com/bootstrap/3.0.3/js/bootstrap.min.js"></script> </head> <body> <div ><h1>第1頁</h1></div> <ul class="pagination"> <li><a href="1.html">«</a></li> <li><a href="1.html">1</a></li> <li><a href="2.html">2</a></li> <li><a href="3.html">3</a></li> <li><a href="#">4</a></li> <li><a href="#">5</a></li> <li><a href="#">»</a></li> </ul> </body> </html>
第二個實例jquery pagination分頁控件
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Pagination Demo I - Simple pagination</title> <link rel="stylesheet" href="lib/pagination.css" /> <link rel="stylesheet" href="demo.css" /> <script type="text/javascript" src="lib/jquery-1.10.2.min.js"></script> <script type="text/javascript" src="lib/jquery.pagination.js"></script> <script type="text/javascript"> function pageselectCallback(page_index, jq){ var new_content = jQuery('#hiddenresult div.result:eq('+page_index+')').clone(); $('#Searchresult').empty().append(new_content); return false; } function initPagination() { // count entries inside the hidden content var num_entries = jQuery('#hiddenresult div.result').length; // Create content inside pagination element $("#Pagination").pagination(num_entries, { callback: pageselectCallback, items_per_page:1 // Show only one item per page }); } // When document is ready, initialize pagination $(document).ready(function(){ initPagination(); }); </script> </head> <body> <br style="clear:both;" /> <div id="Searchresult"> This content will be replaced when pagination inits. </div> <div class="searchresult_pagination"></div> <br style="clear:left;"> <!-- Container element for all the Elements that are to be paginated --> <div id="hiddenresult" style="display:none;"> <div class="result"><p>Globally maximize granular "outside the box" thinking vis-a-vis quality niches. Proactively formulate 24/7 results whereas 2.0 catalysts for change. Professionally implement 24/365 niches rather than client-focused users.</p> <p> Competently engineer high-payoff "outside the box" thinking through cross functional benefits. Proactively transition intermandated processes through open-source niches. Progressively engage maintainable innovation and extensible interfaces.</p> </div> <div class="result"><p>Credibly fabricate e-business models for end-to-end niches. Compellingly disseminate integrated e-markets without ubiquitous services. Credibly create equity invested channels with multidisciplinary human capital.</p> <p> Interactively integrate competitive users rather than fully tested infomediaries. Seamlessly initiate premium functionalities rather than impactful architectures. Rapidiously leverage existing resource-leveling processes via user-centric portals.</p> </div> <div class="result"><p>Monotonectally initiate unique e-services vis-a-vis client-centric deliverables. Quickly impact parallel opportunities with B2B bandwidth. Synergistically streamline client-focused infrastructures rather than B2C e-commerce.</p> <p> Phosfluorescently fabricate 24/365 e-business through 24/365 total linkage. Completely facilitate high-quality systems without stand-alone strategic theme areas.</p> </div> <div class="result"><p>Monotonectally initiate unique e-services vis-a-vis client-centric deliverables. Quickly impact parallel opportunities with B2B bandwidth. Synergistically streamline client-focused infrastructures rather than B2C e-commerce.</p> <p> Phosfluorescently fabricate 24/365 e-business through 24/365 total linkage. Completely facilitate high-quality systems without stand-alone strategic theme areas.</p> </div> </div> <div id="Pagination"></div> </body> </html>
分頁效果:
源碼:https://github.com/gbirke/jquery_pagination
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:
- jQuery EasyUI API 中文文檔 - Pagination分頁
- jQuery Pagination Ajax分頁插件(分頁切換時無刷新與延遲)中文翻譯版
- Jquery 分頁插件之Jquery Pagination
- jquery分頁插件jquery.pagination.js使用方法解析
- jquery.pagination +JSON 動態(tài)無刷新分頁實現(xiàn)代碼
- jquery插件pagination實現(xiàn)無刷新ajax分頁
- asp.net jquery無刷新分頁插件(jquery.pagination.js)
- jQuery插件分享之分頁插件jqPagination
- jquery pagination分頁插件使用詳解(后臺struts2)
- jQuery分頁插件jquery.pagination.js使用方法解析
相關(guān)文章
基于JavaScript實現(xiàn)繼承機制之構(gòu)造函數(shù)+原型鏈混合方式的使用詳解
本篇文章是對構(gòu)造函數(shù)與原型鏈混合方式的使用進行了詳細(xì)的分析介紹。需要的朋友參考下2013-05-05JavaScript實現(xiàn)多維數(shù)組的方法
這篇文章主要介紹了JavaScript實現(xiàn)多維數(shù)組的方法,有需要的朋友可以參考一下2013-11-11