github参考地址:https://github.com/pgkk/kkpager
<link href="./pagesrc/kkpager_orange.css" rel="stylesheet" />
<script src="./pagesrc/kkpager.js"></script>
<div id="kkpager"></div>
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);