当前位置: 首页 > 工具软件 > kkpager > 使用案例 >

jQuery 分页kkpager

尉迟国发
2023-12-01

github参考地址:https://github.com/pgkk/kkpager

  1. 需要在GitHub上下载文件引入css,js
<link href="./pagesrc/kkpager_orange.css" rel="stylesheet" />
<script src="./pagesrc/kkpager.js"></script>
  1. 其次body里
<div id="kkpager"></div>
  1. js
var page = 1
kkpager.generPageHtml({
  pno: page,
  total: '10',//总页码  
  totalRecords: '10',//总数据条数  
  hrefFormer: '1',//链接前部  
  hrefLatter: '2',//链接尾部  
  isShowFirstPageBtn: true, //是否显示首页按钮
  isShowLastPageBtn: true, //是否显示尾页按钮
  isShowPrePageBtn: true, //是否显示上一页按钮
  isShowNextPageBtn: true, //是否显示下一页按钮
  isShowTotalPage: true, //是否显示总页数
  isShowCurrPage: false,//是否显示当前页
  isShowTotalRecords: false, //是否显示总记录数
  isGoPage: false,    //是否显示页码跳转输入框
  isWrapedPageBtns: false,    //是否用span包裹住页码按钮
  isWrapedInfoTextAndGoPageBtn: false, //是否用span包裹住分页信息和跳转按钮
  mode: 'click', //link:跳链接  click:点击
  click: function (n) {
      this.selectPage(n);
   }
}, true);
 类似资料: