自己编写的分页插件

效果图:

Animation.gif

js代码:
/*
2017-08-25 create By wqq.
使用说明:
1.导入wqqpage.css文件
2.导入wqqpage.js文件
3、 var page = new PagePlug(容器元素,{
totalPages:总页数
liNums:每页显示的页数
activeColor:点击之后的按钮
firstPage:首页按钮的文本
lastPage:末页按钮的文本
pre:上一页按钮的文本
next:下一页按钮的文本
})
*/


function PagePlug(container,options){
this.container = container;
// 属性
this.totalPages = options.totalPages||9;//总页数
this.liNums = options.liNums || 9;//分页的数字按钮数(建议取奇数)
this.activeColor = options.activeColor || 'orange' ,//默认颜色
this.firstPage = options.firstPage || '首页',//首页按钮名称
this.lastPage = options.lastPage || '末页',//末页按钮名称
this.pre = options.pre || '«',//前一页按钮名称
this.next = options.next || '»',//后一页按钮名称

        this.callBack = options.callBack;
        this.currentPage = 1;
        this.btnArr = [];
        this.pageBtnArr = [];
        this.firstPageDiv = null;
        this.preDiv = null;
        this.lastPageDiv = null;
        this.nextDiv = null;
        this.initPage();

}

// 创建分页样式
PagePlug.prototype.initPage = function(){
// 保存下this在各个按钮的点击事件中使用
var pageP = this;

// 创建首页
this.firstPageDiv = document.createElement("div");
this.firstPageDiv.innerText = this.firstPage;
this.firstPageDiv.className = "pageBtn";
this.container.appendChild(this.firstPageDiv);
this.btnArr.push( this.firstPageDiv );
// 刚开始首页是处于隐藏的状态
this.firstPageDiv.style.display = "none";

this.firstPageDiv.onclick = function(){
    pageP.currentPage = 1;
    pageP.currentPageStyle();
    pageP.callBack(1);
}

// 创建上一页
this.preDiv = document.createElement("div");
this.preDiv.innerText = this.pre;
this.preDiv.className = "pageBtn";
this.container.appendChild(this.preDiv);
//刚开始上一页也是处于隐藏的状态
this.preDiv.style.display = "none";
this.btnArr.push( this.preDiv );

this.preDiv.onclick = function(){
    if (pageP.currentPage == 1) {
        return;
    };
    pageP.currentPage -- ;
    pageP.currentPageStyle();
    pageP.callBack(pageP.currentPage);
}

// 创建页数按钮
for (var i = 0; i < this.liNums; i++) {
    var pageDiv = document.createElement("div");
    pageDiv.innerText = i+1;
    pageDiv.className = "pageBtn";
    if (i==0) {
        pageDiv.style.background = this.activeColor;
    };
    this.container.appendChild(pageDiv);
    this.btnArr.push( pageDiv );
    this.pageBtnArr.push(pageDiv);
    pageDiv.onclick = function(){
        pageP.currentPage = Number( this.innerText );
        pageP.callBack(this.innerText);
        pageP.currentPageStyle();
    }
};

// 创建下一页
this.nextDiv = document.createElement("div");
this.nextDiv.innerText = this.next;
this.nextDiv.className = "pageBtn";
this.container.appendChild(this.nextDiv);
this.btnArr.push( this.nextDiv );
this.nextDiv.onclick = function(){
    if (pageP.currentPage >= pageP.totalPages ) {
        return;
    };
    pageP.currentPage ++ ;
    pageP.currentPageStyle();
    pageP.callBack( pageP.currentPage );
}
// 创建末页
this.lastPageDiv= document.createElement("div");
this.lastPageDiv.innerText = this.lastPage;
this.lastPageDiv.className = "pageBtn";
this.container.appendChild(this.lastPageDiv);
// 刚开始 末页处于隐藏状态
this.lastPageDiv.style.display = "none";
this.btnArr.push( this.lastPageDiv );
this.lastPageDiv.onclick = function(){
    pageP.currentPage = pageP.totalPages ;
    pageP.currentPageStyle();
    pageP.callBack(pageP.currentPage);
}

}
// 根据当前点击的页数 决定分页插件显示的值
PagePlug.prototype.currentPageStyle = function(){
// currentPage = 1
// currentPage 1 消失了 parseInt( liNum/2 )
// curentPage现在不是1
if (this.currentPage == 1) {
this.firstPageDiv.style.display = "none";
this.preDiv.style.display = "none";
this.nextDiv.style.display = "block";
this.lastPageDiv.style.display = "none";

    // 页码从1开始显示到liNums
    for (var i = 0; i < this.pageBtnArr.length; i++) {
        this.pageBtnArr[i].innerText = (i+1);
    };

}else if(this.currentPage <= parseInt(this.liNums/2)){
    // 上一页出现
    this.firstPageDiv.style.display = "none";
    this.preDiv.style.display = "block";
    this.nextDiv.style.display = "block";
    this.lastPageDiv.style.display = "none";
    // 页码从1开始显示到liNums
    for (var i = 0; i < this.pageBtnArr.length; i++) {
        this.pageBtnArr[i].innerText = (i+1);
    };
}else if(this.currentPage <= this.totalPages - this.liNums/2){
    this.firstPageDiv.style.display = "block";
    this.preDiv.style.display = "block";
    this.nextDiv.style.display = "block";
    this.lastPageDiv.style.display = "none";
    // 当前页面的值大于中间按钮的值时,需要改变数字按钮的html
    for (var i = 0; i < this.pageBtnArr.length; i++) {
        this.pageBtnArr[i].innerText = this.currentPage - parseInt(this.liNums/2)+1+i;
    };
}else if (this.currentPage < this.totalPages   ) {
    this.firstPageDiv.style.display = "block";
    this.preDiv.style.display = "block";
    this.nextDiv.style.display = "block";
    this.lastPageDiv.style.display = "block";
    
    for (var i = this.totalPages-this.liNums+1 ; i >= this.totalPages; i++) {
        // console.log("i--------" + i);
        this.pageBtnArr[i-(this.totalPages-this.liNums+1)].innerText =  i;
    };
}else{
    this.firstPageDiv.style.display = "block";
    this.preDiv.style.display = "block";
    this.nextDiv.style.display = "none";
    this.lastPageDiv.style.display = "none";
}

for (var i = 0; i < this.pageBtnArr.length; i++) {
    if( this.pageBtnArr[i].innerText == this.currentPage ){
        this.pageBtnArr[i].style.background = this.activeColor;
    }else{
        this.pageBtnArr[i].style.background = "#fff";
    }
};

}

css代码:
/可以通过修改此处的样式来改变自己的分页插件/
.pageBtn{
font-size: 16px;
min-width: 40px;
padding: 5px;
height: 40px;
text-align: center;
line-height: 40px;
border: 1px solid #ccc;
float: left;
margin-right: 30px;
}


测试案例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
</style>
<link rel="stylesheet" type="text/css" href="wqqpage.css">
<script type="text/javascript" src="wqqpage.js"></script>
</head>
<body>
<div id="test"></div>








<div id="test2"></div>

<script type="text/javascript">
var page = new PagePlug(test,{
    totalPages:20,
    liNums:10,
    firstPage:"test的首页",
    pre:"上一页",
    activeColor:"red",
    callBack:function(page){
        console.log("test--------" + page);
    }
})
var page2 = new PagePlug(test2,{
    totalPages:30,
    liNums:9,
    callBack:function(page){
        console.log("test2---------" + page);
    }
})



</script>

</body>
</html>

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容