HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title></title>
<style>
/* 表面盒子款式---本身定义 */
.page_div{margin:20px 10px 20px 0;color:#666}
/* 页数按钮款式 */
.page_div button{display:inline-block;min-width:30px;height:28px;cursor:pointer;color:#666;font-size:13px;line-height:28px;background-color:#f9f9f9;border:1px solid #dce0e0;text-align:center;margin:0 4px;-webkit-appearance: none;-moz-appearance: none;appearance: none;}
#firstPage,#lastPage,#nextPage,#prePage{width:50px;color:#0073A9;border:1px solid #0073A9}
#nextPage,#prePage{width:70px}
.page_div .current{background-color:#0073A9;border-color:#0073A9;color:#FFF}
/* 页面数目 */
.totalPages{margin:0 10px}
.totalPages span,.totalSize span{color:#0073A9;margin:0 5px}
/*button禁用*/
.page_div button:disabled{opacity:.5;cursor:no-drop}
</style>
</head>
<body ontouchstart="" onmousemove="">
<div value="1 0"></div>
<div id="page" class="page_div"></div>
</body>
<script src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/page1Me.js"></script>
<script>
$("#page").paging({
// pageNo: 18,
// totalPage: 20,
// totalSize: 300,
pageNum: 5,
totalNum: 14,
totalList: 300,
callback: function (num) {
console.log(num);
}
});
// 模仿ajax数据用以下要领,轻易用户更好的控制用法
// 参数为当前页
// ajaxTest(1);
// function ajaxTest(num) {
// $.ajax({
// url: "table.json",
// type: "get",
// data: {},
// dataType: "json",
// success: function(data) {
// console.log(data);
// //分页
// $("#page").paging({
// pageNo: num,
// totalPage: data.totalPage,
// totalSize: data.totalSize,
// callback: function(num) {
// ajaxTest(num)
// }
// })
// }
// })
// }
</script>
</html>
JS
;(function ($, window, document, undefined) {
'use strict';
function Paging(element, options) {
this.element = element;
this.options = {
pageNum: options.pageNum || 1, // 当前页码
totalNum: options.totalNum, // 总页码
totalList: options.totalList, // 数据总纪录
callback: options.callback // 回调函数
};
this.init();
}
Paging.prototype = {
constructor: Paging,
init: function () {
this.createHtml();
this.bindEvent();
},
createHtml: function () {
var me = this;
var content = [];
var pageNum = me.options.pageNum;
var totalNum = me.options.totalNum;
var totalList = me.options.totalList;
content.push("<button type='button' id='firstPage'>首页</button><button type='button' id='prePage'>上一页</button>");
// 总页数大于6必显现省略号
if (totalNum > 6) {
// 1、当前页码小于5且总页码大于6 省略号显现背面+总页码
if (pageNum < 5) {
// 1与6主要看要显现多少个按钮 现在都显现5个
for (var i = 1; i < 6; i++) {
if (pageNum !== i) {
content.push("<button type='button'>" + i + "</button>");
} else {
content.push("<button type='button' class='current'>" + i + "</button>");
}
}
content.push(". . .");
content.push("<button type='button'>" + totalNum + "</button>");
} else {
// 2、当前页码靠近背面 中距离3个 省略号显现背面+总页面
if (pageNum < totalNum - 3) {
for (var i = pageNum - 2; i < pageNum + 3; i++) {
if (pageNum !== i) {
content.push("<button type='button'>" + i + "</button>");
} else {
content.push("<button type='button' class='current'>" + i + "</button>");
}
}
content.push(". . .");
content.push("<button type='button'>" + totalNum + "</button>");
} else {
// 3、页码至少在5,最多在【totalNum - 3】的中心位置 第一页+省略号显现前面
content.push("<button type='button'>" + 1 + "</button>");
content.push(". . .");
for (var i = totalNum - 4; i < totalNum + 1; i++) {
if (pageNum !== i) {
content.push("<button type='button'>" + i + "</button>");
} else {
content.push("<button type='button' class='current'>" + i + "</button>");
}
}
}
}
} else {
// 总页数小于6
for (var i = 1; i < totalNum + 1; i++) {
if (pageNum !== i) {
content.push("<button type='button'>" + i + "</button>");
} else {
content.push("<button type='button' class='current'>" + i + "</button>");
}
}
}
content.push("<button type='button' id='lastPage'>尾页</button><button type='button' id='nextPage'>下一页</button>");
content.push("<span class='totalNum'> 共 " + totalNum + " 页 </span>");
content.push("<span class='totalList'> 共 " + totalList + " 条纪录 </span>");
me.element.html(content.join(''));
// DOM从新天生后每次挪用是不是禁用button
setTimeout(function () {
me.dis();
}, 20);
},
bindEvent: function () {
var me = this;
me.element.off('click', 'button');
// 托付新天生的dom监听事宜
me.element.on('click', 'button', function () {
var id = $(this).attr('id');
var num = parseInt($(this).html());
var pageNum = me.options.pageNum;
if (id === 'prePage') {
if (pageNum !== 1) {
me.options.pageNum -= 1;
}
} else if (id === 'nextPage') {
if (pageNum !== me.options.totalNum) {
me.options.pageNum += 1;
}
} else if (id === 'firstPage') {
if (pageNum !== 1) {
me.options.pageNum = 1;
}
} else if (id === 'lastPage') {
if (pageNum !== me.options.totalNum) {
me.options.pageNum = me.options.totalNum;
}
} else {
me.options.pageNum = num;
}
me.createHtml();
if (me.options.callback) {
me.options.callback(me.options.pageNum);
}
});
},
dis: function () {
var me = this;
var pageNum = me.options.pageNum;
var totalNum = me.options.totalNum;
if (pageNum === 1) {
me.element.children('#firstPage, #prePage').prop('disabled', true);
} else if (pageNum === totalNum) {
me.element.children('#lastPage, #nextPage').prop('disabled', true);
}
}
};
$.fn.paging = function (options) {
return new Paging($(this), options);
}
})(jQuery, window, document);
// 1、代码最前面的分号,能够防备多个文件紧缩兼并认为其他文件末了一行语句没加分号,而引发兼并后的语法错误。
// 2、匿名函数(function(){})();:因为Javascript实行表达式是从圆括号内里到表面,所以能够用圆括号强制实行声明的函数。防止函数体内和外部的变量争执。
// 3、$实参:$是jquery的简写,许多要领和类库也运用$,这里$接收jQuery对象,也是为了防止$变量争执,保证插件能够一般运转。
// 4、window, document实参离别接收window, document对象,window, document对象都是全局环境下的,而在函数体内的window, document实际上是局部变量,不是全局的window, document对象。如许做有个优点就是能够进步机能,削减作用域链的查询时候,假如你在函数体内须要屡次挪用window 或 document对象,如许把window 或 document对象看成参数传进去,如许做黑白常有必要的。固然假如你的插件用不到这两个对象,那末就不必通报这两个参数了。
// 5、undefined形参了,看起来是有点过剩。undefined在老一辈的浏览器是不被支撑的,直接运用会报错,js框架要考虑到兼容性,因而增添一个形参undefined