仿淘宝分页按钮效果简单美观易使用的JS分页控件
分页按钮思想:
1、少于9页,全部显示
2、大于9页,1、2页显示,中间页码当前页为中心,前后各留两个页码
附件中有完整例子的压缩包下载。已更新到最新版本
先看效果图:
01输入框焦点效果

02效果

模仿淘宝的分页按钮效果控件kkpager JS代码:
- var kkpager = {
- //divID
- pagerid : 'div_pager',
- //当前页码
- pno : 1,
- //总页码
- total : 1,
- //总数据条数
- totalRecords : 0,
- //是否显示总页数
- isShowTotalPage : true,
- //是否显示总记录数
- isShowTotalRecords : true,
- //是否显示页码跳转输入框
- isGoPage : true,
- //链接前部
- hrefFormer : '',
- //链接尾部
- hrefLatter : '',
- /****链接算法****/
- getLink : function(n){
- //这里的算法适用于比如:
- //hrefFormer=http://www.xx.com/news/20131212
- //hrefLatter=.html
- //那么首页(第1页)就是http://www.xx.com/news/20131212.html
- //第2页就是http://www.xx.com/news/20131212_2.html
- //第n页就是http://www.xx.com/news/20131212_n.html
- if(n == 1){
- return this.hrefFormer + this.hrefLatter;
- }else{
- return this.hrefFormer + '_' + n + this.hrefLatter;
- }
- },
- //跳转框得到输入焦点时
- focus_gopage : function (){
- var btnGo = $('#btn_go');
- $('#btn_go_input').attr('hideFocus',true);
- btnGo.show();
- btnGo.css('left','0px');
- $('#go_page_wrap').css('border-color','#6694E3');
- btnGo.animate({left: '+=44'}, 50,function(){
- //$('#go_page_wrap').css('width','88px');
- });
- },
- //跳转框失去输入焦点时
- blur_gopage : function(){
- setTimeout(function(){
- var btnGo = $('#btn_go');
- //$('#go_page_wrap').css('width','44px');
- btnGo.animate({
- left: '-=44'
- }, 100, function() {
- $('#btn_go').css('left','0px');
- $('#btn_go').hide();
- $('#go_page_wrap').css('border-color','#DFDFDF');
- });
- },400);
- },
- //跳转框页面跳转
- gopage : function(){
- var str_page = $("#btn_go_input").val();
- if(isNaN(str_page)){
- $("#btn_go_input").val(this.next);
- return;
- }
- var n = parseInt(str_page);
- if(n < 1 || n >this.total){
- $("#btn_go_input").val(this.next);
- return;
- }
- //这里可以按需改window.open
- window.location = this.getLink(n);
- },
- //分页按钮控件初始化
- init : function(config){
- //赋值
- this.pno = isNaN(config.pno) ? 1 : parseInt(config.pno);
- this.total = isNaN(config.total) ? 1 : parseInt(config.total);
- this.totalRecords = isNaN(config.totalRecords) ? 0 : parseInt(config.totalRecords);
- if(config.pagerid){this.pagerid = config.pagerid;}
- if(config.isShowTotalPage != undefined){this.isShowTotalPage=config.isShowTotalPage;}
- if(config.isShowTotalRecords != undefined){this.isShowTotalRecords=config.isShowTotalRecords;}
- if(config.isGoPage != undefined){this.isGoPage=config.isGoPage;}
- this.hrefFormer = config.hrefFormer || '';
- this.hrefLatter = config.hrefLatter || '';
- if(config.getLink && typeof(config.getLink) == 'function'){this.getLink = config.getLink;}
- //验证
- if(this.pno < 1) this.pno = 1;
- this.total = (this.total <= 1) ? 1: this.total;
- if(this.pno > this.total) this.pno = this.total;
- this.prv = (this.pno<=2) ? 1 : (this.pno-1);
- this.next = (this.pno >= this.total-1) ? this.total : (this.pno + 1);
- this.hasPrv = (this.pno > 1);
- this.hasNext = (this.pno < this.total);
- this.inited = true;
- },
- //生成分页控件Html
- generPageHtml : function(){
- if(!this.inited){
- return;
- }
- var str_prv='',str_next='';
- if(this.hasPrv){
- str_prv = '<a href="'+this.getLink(this.prv)+'" title="上一页">上一页</a>';
- }else{
- str_prv = '<span class="disabled">上一页</span>';
- }
- if(this.hasNext){
- str_next = '<a href="'+this.getLink(this.next)+'" title="下一页">下一页</a>';
- }else{
- str_next = '<span class="disabled">下一页</span>';
- }
- var str = '';
- var dot = '<span>...</span>';
- var total_info='';
- if(this.isShowTotalPage || this.isShowTotalRecords){
- total_info = '<span class="normalsize">共';
- if(this.isShowTotalPage){
- total_info += this.total+'页';
- if(this.isShowTotalRecords){
- total_info += ' / ';
- }
- }
- if(this.isShowTotalRecords){
- total_info += this.totalRecords+'条数据';
- }
- total_info += '</span>';
- }
- var gopage_info = '';
- if(this.isGoPage){
- gopage_info = ' 转到<span id="go_page_wrap" style="display:inline-block;width:44px;height:18px;border:1px solid #DFDFDF;margin:0px 1px;padding:0px;position:relative;left:0px;top:5px;">'+
- '<input type="button" id="btn_go" onclick="kkpager.gopage();" style="width:44px;height:20px;line-height:20px;padding:0px;font-family:arial,宋体,sans-serif;text-align:center;border:0px;color:#FFF;position:absolute;left:0px;top:-1px;display:none;" value="确定" />'+
- '<input type="text" id="btn_go_input" onfocus="kkpager.focus_gopage()" onkeypress="if(event.keyCode<48 || event.keyCode>57)return false;" onblur="kkpager.blur_gopage()" style="width:42px;height:16px;text-align:center;border:0px;position:absolute;left:0px;top:0px;outline:none;" value="'+this.next+'" /></span>页';
- }
- //分页处理
- if(this.total <= 8){
- for(var i=1;i<=this.total;i++){
- if(this.pno == i){
- str += '<span class="curr">'+i+'</span>';
- }else{
- str += '<a href="'+this.getLink(i)+'" title="第'+i+'页">'+i+'</a>';
- }
- }
- }else{
- if(this.pno <= 5){
- for(var i=1;i<=7;i++){
- if(this.pno == i){
- str += '<span class="curr">'+i+'</span>';
- }else{
- str += '<a href="'+this.getLink(i)+'" title="第'+i+'页">'+i+'</a>';
- }
- }
- str += dot;
- }else{
- str += '<a href="'+this.getLink(1)+'" title="第1页">1</a>';
- str += '<a href="'+this.getLink(2)+'" title="第2页">2</a>';
- str += dot;
- var begin = this.pno - 2;
- var end = this.pno + 2;
- if(end > this.total){
- end = this.total;
- begin = end - 4;
- if(this.pno - begin < 2){
- begin = begin-1;
- }
- }else if(end + 1 == this.total){
- end = this.total;
- }
- for(var i=begin;i<=end;i++){
- if(this.pno == i){
- str += '<span class="curr">'+i+'</span>';
- }else{
- str += '<a href="'+this.getLink(i)+'" title="第'+i+'页">'+i+'</a>';
- }
- }
- if(end != this.total){
- str += dot;
- }
- }
- }
- str = " "+str_prv + str + str_next + total_info + gopage_info;
- $("#"+this.pagerid).html(str);
- }
- };
html调用代码:
- <div id="div_pager"></div>
- <script type="text/javascript">
- //生成分页控件
- kkpager.init({
- pno : '${p.pageNo}',
- //总页码
- total : '${p.totalPage}',
- //总数据条数
- totalRecords : '${p.totalCount}',
- //链接前部
- hrefFormer : '${hrefFormer}',
- //链接尾部
- hrefLatter : '${hrefLatter}'
- });
- kkpager.generPageHtml();
- </script>
以上是示例中是必传参数,页码、总页数、总记录数这些是要根据获取服务端pager对象当相关值,还有可选的参数:pagerid、isShowTotalPage、isShowTotalRecords、isGoPage、getLink
注意链接算法哟,以下是默认链接算法(这个getLink方法也可以作为config参数):
- /****默认链接算法****/
- getLink : function(n){
- //这里的算法适用于比如:
- //hrefFormer=http://www.xx.com/news/20131212
- //hrefLatter=.html
- //那么首页(第1页)就是http://www.xx.com/news/20131212.html
- //第2页就是http://www.xx.com/news/20131212_2.html
- //第n页就是http://www.xx.com/news/20131212_n.html
- if(n == 1){
- return this.hrefFormer + this.hrefLatter;
- }else{
- return this.hrefFormer + '_' + n + this.hrefLatter;
- }
- }
CSS代码:
- #div_pager{
- clear:both;
- height:30px;
- line-height:30px;
- margin-top:20px;
- color:#999999;
- }
- #div_pager a{
- padding:4px 8px;
- margin:10px 3px;
- font-size:12px;
- border:1px solid #DFDFDF;
- color:#9d9d9d;
- text-decoration:none;
- }
- #div_pager span{
- padding:4px 8px;
- margin:10px 3px;
- font-size:14px;
- }
- #div_pager span.disabled{
- padding:4px 8px;
- margin:10px 3px;
- font-size:12px;
- border:1px solid #DFDFDF;
- color:#DFDFDF;
- }
- #div_pager span.curr{
- padding:4px 8px;
- margin:10px 3px;
- font-size:12px;
- border:1px solid #FF6600;
- color:#FFF;
- }
- #div_pager a:hover{
- border:1px solid #FF6600;
- }
- #div_pager span.normalsize{
- font-size:12px;
- }
效果图:
1、没有数据或只有一页数据时效果

2、有多页时当效果

3、第5页效果

4、第6页效果(分页效果2)

5、第17页效果(接近尾页效果)

6、尾页效果

7、输入框焦点效果

最后注意,若要使用,使用时请修改分页获取链接当算法,不然不适用哟
里面输入框我把ID写死了,样式也是写当行内样式,懒得提取出来了,影响不大,各位看官若要用自己再修修,呵呵
仿淘宝分页按钮效果简单美观易使用的JS分页控件的更多相关文章
- JavaScript仿淘宝实现放大镜效果的实例
我们都知道放大镜效果一般都是用于一些商城中的,列如每当我们打开淘宝,天猫等pc端时,看到心仪的物品时,点击图片时,便呈现出放大镜的效果.在没有去理解分析它的原理时,感觉非常的神奇,当真正地去接触,也是 ...
- Android 仿淘宝头条竖直跑马灯式新闻标题及“分页思想
在淘宝App的首页中间位置,有一块小小的地方在不知疲倦地循坏滚动着头条标题(见下图的红框区域),这样的设计无疑能够在有限的手机屏幕上展示更丰富的内容.而实现这一功能需要用到的控件就是我在上一篇文章中提 ...
- 基于Bootstrap仿淘宝分页控件实现
.header { cursor: pointer } p { margin: 3px 6px } th { background: lightblue; width: 20% } table { t ...
- JS仿淘宝详情页菜单条智能定位效果
类似于淘宝详情页菜单条智能定位 对于每个人来说并不陌生!如下截图所示:红色框的那部分! 基本原理: 是用JS侦听滚动事件,当页面的滚动距离(页面滚动的高度)大于或者等于 "对象"( ...
- jquery仿淘宝规格颜色选择效果
jquery实现的仿淘宝规格颜色选择效果源代码如下 jquery仿淘宝规格颜色选择效果 -收缩HTML代码 运行代码 [如果运行无效果,请自行将源代码保存为html文件运行] <script t ...
- Android仿淘宝继续上拉进入商品详情页的效果,使用双Fragment动画切换;
仿淘宝继续上拉进入商品详情页的效果,双Fragment实现: 动画效果: slide_above_in.xml <?xml version="1.0" encoding=&q ...
- Android仿淘宝头条滚动广告条
之前我使用TextView+Handler+动画,实现了一个简单的仿淘宝广告条的滚动,https://download.csdn.net/download/qq_35605213/9660825: 无 ...
- 仿淘宝头像上传功能(三)——兼容 IE6 浏览器。
前两篇目录: 仿淘宝头像上传功能(一)——前端篇. 仿淘宝头像上传功能(二)——程序篇. 仿淘宝头像上传功能(三)——兼容 IE6 浏览器 之前的这两篇虽然实现了功能,但不兼容低版本浏览器,而且有些浏 ...
- 原生js仿淘宝手机购买选项代码
这是一款基于原生js实现仿淘宝手机信息购买选项效果源码,界面整体效果仿照淘宝购物选项设计,点击不同选项还可实时显示不同的价格计算结果,界面简洁大方.美观实用.可兼容目前最新的各类主流浏览器. 在线演示 ...
随机推荐
- Linux命令随笔
Linux命令总结 man ==命令帮助; help ==命令的帮助(bash的内置命令); ls ==list,查看目录列表; -ld:查看目录权限; -l:(long)长格式显示属性; -F:给不 ...
- 烂泥:切割nginx日志
本文由ilanniweb提供友情赞助,首发于烂泥行天下 想要获得更多的文章,可以关注我的微信ilanniweb 这几天自己看了下博客的nginx日志,发现日志文件发现越来越大. 因为nginx自己不会 ...
- WORD中字数和字符
在WORD中,一个汉字算1个字符,也算是1个字,一个标点符号也算1个字符,也算是1个字,WORD中字符数的统计分为(不计空格)和(计空格)的两种. 如果一篇文章仅由汉字和标点符号组成,那么字数=字符数 ...
- [LeetCode] Maximum XOR of Two Numbers in an Array 数组中异或值最大的两个数字
Given a non-empty array of numbers, a0, a1, a2, … , an-1, where 0 ≤ ai < 231. Find the maximum re ...
- [LeetCode] Add Binary 二进制数相加
Given two binary strings, return their sum (also a binary string). For example,a = "11"b = ...
- 使用Bandwagon的VPS第一件事《FQ》
说点闲话:昨天的长靴子到了,哎呀,今天那个高兴,踩着我的8厘米的过膝靴就出门上专业外语去了,扎了个麻花辫子,那个心情好哟,搞得我都不想继续学习linux平台上的C语言了,好想逛街----秀秀我的鞋子, ...
- 30秒搞定javascript作用域
引用一下js权威指南的一名话作为开场”JavaScript中的函数运行在它们被定义的作用域里,而不是它们被执行的作用域里.” javascript不存在大括号级的作用域,但他有函数作用域,也就是说变量 ...
- MVC系列——MVC源码学习:打造自己的MVC框架(四:了解神奇的视图引擎)
前言:通过之前的三篇介绍,我们基本上完成了从请求发出到路由匹配.再到控制器的激活,再到Action的执行这些个过程.今天还是趁热打铁,将我们的View也来完善下,也让整个系列相对完整,博主不希望烂尾. ...
- OLTP(on-line transaction processing)与OLAP(On-Line Analytical Processing)
OLTP与OLAP的介绍 数据处理大致可以分成两大类:联机事务处理OLTP(on-line transaction processing).联机分析处理OLAP(On-Line Analytical ...
- ios应用程序结构
MVC开发模式 什么是mvc,相信有一定开发经验的程序员都应该知道. M —— 模型,为程序提供数据 V —— 视图,为用户提供界面 C —— 控制器,用来控制程序视图,即上面的V 在ios程序中,一 ...