- 浏览: 16794 次
- 性别:
- 来自: 长春
最新评论
-
zhanghh315:
一直在纠结淘宝的秒杀究竟是怎么做到客户端和服务器端时间同步的, ...
客户端实现准确的服务器时间同步 [转] -
zhanghh315:
shenlm203 写道亲,没注意看你的center组件,不过 ...
js弹出框或者提示框居中显示 -
zhanghh315:
<div class="quote_title ...
js分页 -
shenlm203:
亲,没注意看你的center组件,不过呢这个有点儿小意见。非I ...
js弹出框或者提示框居中显示 -
shenlm203:
js分页
做网站时,遇到需要js分页,网上找来找去,找不到合适的,索性自己写了一个,也不是什么特别高深的东西,拿出来和大家共享下,有好的想法,欢迎与我沟通交流,共勉!
对以前的分页进行了润色,这里附加例子和截图,亲们可以好好看看
core.js
KISSY.add('plugins/pagination/core', function(S,a,juicer,j,Pctrl) { var DOM = S.DOM, get = DOM.get, query = DOM.query, JSON = S.JSON, on = S.Event.on, IO = S.IO, EMPTY_FUNCTION = function(){}, DEFAULT_THEME_PKG = { showCounter: true,//定义是否显示分页中的计数部分 themeCounter: '({page})/({pageCount})',//计数部分样式 showJump: true,//定义是否显示分页中的点击按钮跳转部分 themeJump: '跳到第({input})页({button})', showPageNum: true,//定义是否只需要展示上一页,下一页部分 themeCss: 'J_pagination_theme1', firstPageTip: '<<', lastPageTip: '>>', prevPageTip:'<', nextPageTip:'>' } config = { renderTo:'', juicerRender:'', dataRender:'#J_template', page: 1,//定义当前页 pageSize: 0,//定义每页显示的记录数 dataCount: 10000,//定义总记录数 pageCount: 0, themePackageURL: '',//主题包访问地址 themeName: 'default', type: 'get', url:'', extraParam: null, sendData: function(){}, configUrl: function(url,page,extraParam){}, beforeDataLoad: EMPTY_FUNCTION, afterDataLoad: EMPTY_FUNCTION, initCompleted: EMPTY_FUNCTION,//初始化对象完成后的回调函数 beforeSendAJAX: EMPTY_FUNCTION,//获取数据ajax发送之前 errorFun: EMPTY_FUNCTION//ajax发送失败后的回调函数 }; THEME_URL = PW.libUrl + 'js/base/plugins/pagination/style.css'; S.getScript(THEME_URL,{charset:'utf-8'}); var pagination = function(param){ var cfg = S.clone(config); this.opts = S.mix(cfg,param,true,[],true); this.init(); }; pagination.prototype = { /** * 初始化函数 */ init: function(){ var that = this, opts = that.opts; that.prevPaginationData = null; that._getThemePackage(); if(opts.initCompleted){ opts.initCompleted();//初始化完成后的函数 } }, /** * 重新加载页面,是一个外部方法 * @param 参数param是需要重新加载页面的分页新配置,没有可不写 */ reload: function(param){ this.opts = S.mix(this.opts,param); this.tDOM.html(""); this.init(); }, /** * 更新分页显示,是一个外部方法,主要用于在添加或者删除记录的情况下,判断分页的页数是否需要改变 * @param 参数param是需要改变的分页的新配置 */ refresh: function(param){ //更新dataCount //计算分页 //执行toPage操作 this.opts = S.mix(this.opts,param); var pageC = Math.ceil(this.opts.dataCount/this.opts.pageSize); var that = this; if(pageC != this.opts.pageCount){ that._sendAjax(this.opts.page); } }, _getThemePackage:function(){ var that = this, opts = that.opts, tPURL = opts.themePackageURL; if(tPURL && tPURL !== '' && tPURL !== null && tPURL !== undefined){ IO({ url:tPURL, type:'get', success:function(tp){ tp = (S.isString(tp))? S.JSON.parse(tp): tp; var themeName; if(opts.themeName){ themeName = opts.themeName; }else{ themeName = 'default'; } that.opts.themePackage = tp.pagination[themeName]; that.prevPaginationData; that.pctrl = new Pctrl(opts); that._sendAjax(opts.page); }, error:function(a,b,c){ S.log('主题包获取失败,直接使用默认配置!'); opts.themePackage = DEFAULT_THEME_PKG; that.prevPaginationData; that.pctrl = new Pctrl(opts); that._sendAjax(opts.page); } }); }else{ opts.themePackage = DEFAULT_THEME_PKG; that.prevPaginationData; that.pctrl = new Pctrl(opts); that._sendAjax(opts.page); } }, _sendAjax: function(page){ var that = this, opts = that.opts, URL; if(!opts.timeout || opts.timeout == undefined || opts.timeout == '' || opts.timeout == null){ opts.timeout = 10; } IO({ type: opts.type, url: opts.configUrl(that.opts.url,that.opts.page,that,that.prevPaginationData), data: opts.extraParam, timeout: opts.timeout, /*beforeSend: function(){ if(opts.beforeSendAJAX){ opts.beforeSendAJAX(that); } },*/ success: function(data){ /*URL = opts.configUrl(that.opts.url,that.opts.page,that,that.prevPaginationData); that.fire('beforeDataLoad',{url:URL,data:opts.extraParam});*/ data = (S.isString(data)) ? S.JSON.parse(data): data; if(opts.beforeDataLoad){ opts.beforeDataLoad(that,data); } that.opts.sendData(that,data); S.log(data); //如果后台传dataCount过来就将传来的值指定给当前分页的dataCount //如果没有传值,则使用默认的配置值 if(data.dataCount !== null && data.dataCount !== '' &&data.dataCount !== undefined){ opts.dataCount = data.dataCount; } opts.pageCount = Math.ceil(opts.dataCount/opts.pageSize); var tpl = document.getElementById(opts.juicerRender).innerHTML; that.prevPaginationData = data; var html = juicer(tpl, data); DOM.html(opts.dataRender,html); DOM.html(opts.renderTo,''); that.pctrl.refresh(opts.dataCount,page); that._pageClick(); if(opts.afterDataLoad){ opts.afterDataLoad(that); } }, error: function(){ alert('获取数据失败!'); if(opts.errorFun){ opts.errorFun(that); } } }); }, _pageClick:function(){ //绑定click事件 var that = this, opts = that.opts; that.tDOM = $(opts.renderTo); //点击首页 that.tDOM.find('#J_firstPage').click(function(){ if(!($(this).hasClass('disabled'))){ opts.page = 1; that._sendAjax(opts.page); } }); //点击上一页 that.tDOM.find('#J_prevPage').click(function(){ if(!($(this).hasClass('disabled'))){ opts.page = opts.page - 1; that._sendAjax(opts.page); } }); //点击下一页 that.tDOM.find('#J_nextPage').click(function(){ if(!($(this).hasClass('disabled'))){ opts.page = opts.page + 1; that._sendAjax(opts.page); } }); //点击尾页 that.tDOM.find('#J_lastPage').click(function(){ if(!($(this).hasClass('disabled'))){ opts.page = opts.pageCount; that._sendAjax(opts.page); } }); //点击指定的页码 that.tDOM.find(".J_page").each(function(){ if(!($(this).hasClass('check'))){ $(this).click(function(){ var val = $(this).children('span').text(); opts.page = parseInt(val); that._sendAjax(opts.page); }); } }); //点击按钮进行跳转 that.tDOM.find('.J_btnGo').click(function(){ if($(this).prev('#pageNum').val() && $(this).prev('#pageNum').val() !== '' && $(this).prev('#pageNum').val() !== null){ var p = $(this).prev('#pageNum').val(); p = parseInt(p); if(p > that.opts.pageCount){ opts.page = opts.pageCount; }else if(p < 1){ opts.page = 1; }else if(isNaN(p)){ opts.page = 1; }else{ opts.page = p; } that._sendAjax(opts.page); } }); }, _toPage: function(page){ page = parseInt(page); this.opts.page = page; this.tDOM.html(""); this.pctrl.refresh(this.opts.dataCount,this.opts.page); } } return pagination; }, { requires : ['thirdparty/jquery','plugins/juicer','core','pagination/Pctrl'] }); KISSY.add('pagination/Pctrl',function(S){ var DOM = S.DOM, get = DOM.get, query = DOM.query, JSON = S.JSON, on = S.Event.on, io = S.io, config = { renderTo:'', pageSize: 10, showCounter: true, showJump: true, showPageNum: true, themePackage: { //当前分页的主题包 themeCss: 'J_pagination_theme1', showCounter: true,//定义是否显示分页中的计数部分 themeCounter: 'Page({page})of({pageCount})',//计数部分样式 showJump: true,//定义是否显示分页中的点击按钮跳转部分 themeJump: '跳到第({input})页({button})', showPageNum: true,//定义是否只需要展示上一页,下一页部分 firstPageTip: '<<', lastPageTip: '>>', prevPageTip:'<', nextPageTip:'>' } }; function Pctrl(param){ this.opts = S.mix(config,param,true,[],true); this.page = 1; } S.augment(Pctrl,S.EventTarget); S.augment(Pctrl,{ _init:function(){}, refresh: function(dataCount,page){ //计算页数,然后根据页数获取html var that = this, opts = that.opts; opts.dataCount = dataCount; opts.pageCount = Math.ceil(opts.dataCount/opts.pageSize); that._checkPage(page); var html = that._generateHTML(page); var d = $(this.opts.renderTo).append(html); $(this.opts.renderTo).addClass(opts.themePackage.themeCss); that._addEvt(d); }, _addEvt: function(html){ this._checkPage(); d = DOM.create(html); return d; }, /** * 配置处理函数,对配置项里面的主题配置进行处理,提取出需要的内容 */ _configHandel:function(){ var that = this, opts = that.opts; this.themeCounter = opts.themePackage.themeCounter; this.themeCounter = this.themeCounter.replace('({page})',' '+this.opts.page+' '); this.themeCounter = this.themeCounter.replace('({pageCount})',' '+this.opts.pageCount+' '); this.themeJump = opts.themePackage.themeJump; this.themeJump = this.themeJump.replace('({input})','<input type="text" id="pageNum" name="pageNum" class="goTo" value="" />'); this.themeJump = this.themeJump.replace('({button})','<button class="J_btnGo">go</button>'); }, /** * 拼装分页html */ _generateHTML: function(page){ // var strHtml = '', opts = this.opts, endPage = 0; opts.page = page; var prevPage = parseInt(opts.page) - 1, nextPage = parseInt(opts.page) + 1; this._configHandel(); if(opts.themePackage.showCounter == true){ strHtml += '<span class="count">'+this.themeCounter+'</span>'; } if (prevPage < 1) { strHtml += '<span id="J_firstPage" class="firstPage disabled" title="First Page">'+opts.themePackage.firstPageTip+'</span>'; strHtml += '<span id="J_prevPage" class="prevPage disabled" title="Prev Page">'+opts.themePackage.prevPageTip+' </span>'; } else { strHtml += '<a><span id="J_firstPage" title="First Page">'+opts.themePackage.firstPageTip+'</span></a>'; strHtml += '<a><span id="J_prevPage" title="Prev Page">'+opts.themePackage.prevPageTip+' </span></a>'; } if (opts.page != 1 && opts.themePackage.showPageNum == true) strHtml += '<a class="J_page"><span title="Page 1">1</span></a>'; if (opts.page >= 5 && opts.themePackage.showPageNum == true) strHtml += '<span class="until">...</span>'; if (opts.pageCount > opts.page + 2) { endPage = opts.page + 2; } else { endPage = opts.pageCount; } for (var i = opts.page - 2; i <= endPage; i++) { if (i > 0) { if (i == opts.page && opts.themePackage.showPageNum == true) { strHtml += '<span title="Page ' + i + '" class="check">' + i + '</span>'; }else { if (i != 1 && i != opts.pageCount && opts.themePackage.showPageNum == true) { strHtml += '<a class="J_page"><span title="Page ' + i + '">' + i + '</span></a>'; } } } } if (opts.page + 3 < opts.pageCount && opts.themePackage.showPageNum == true) strHtml += '<span class="until">...</span>'; if (opts.page != opts.pageCount && opts.themePackage.showPageNum == true) strHtml += '<a class="J_page"><span title="Page ' + this.opts.pageCount + '">' + this.opts.pageCount + '</span></a>'; if (nextPage > opts.pageCount) { strHtml += '<span id="J_nextPage" class="nextPage disabled" title="Next Page"> '+opts.themePackage.nextPageTip+'</span>'; strHtml += '<span id="J_lastPage" class="lastPage disabled" title="Last Page">'+opts.themePackage.lastPageTip+'</span>'; } else { strHtml += '<a><span id="J_nextPage" title="Next Page"> '+opts.themePackage.nextPageTip+'</span></a>'; strHtml += '<a><span id="J_lastPage" title="Last Page">'+opts.themePackage.lastPageTip+'</span></a>'; } if(opts.themePackage.showJump == true){ strHtml += this.themeJump; } strHtml += '<br/>'; if(opts.pageCount <= 1){ strHtml = ''; } return strHtml; }, /** * 对当前页数和总页数进行验证 */ _checkPage: function(){ var opts = this.opts; //当前页数为非数字,则当前页数置为1 if (isNaN(parseInt(opts.page))) opts.page = 1; //总页数为非数字,则将总页数置为1 if (isNaN(parseInt(opts.pageCount))) opts.pageCount = 1; if (opts.page < 1) opts.page = 1; if (opts.pageCount < 1) opts.pageCount = 1; if (opts.page > opts.pageCount) opts.page = opts.pageCount; opts.page = parseInt(opts.page); opts.pageCount = parseInt(opts.pageCount); } }); return Pctrl; },{ requires:['core','thirdparty/jquery'] });
pagination.js
KISSY.add('mod/pagination',function(S,pagination){ PW.pagination = function(param){ return new pagination(param); } },{requires:['plugins/pagination/core']});
pagination.html
<script type="text/javascript"> KISSY.use('plugins/pagination/core', function(S,pagination) { S.ready(function(){ var p = new pagination({ renderTo: '#J_pagination',//分页显示指向 juicerRender: 'tpl',//模版渲染指向 dataRender: '#J_template', pageSize: 5,//每页显示的记录数 dataCount: 50,//总记录数 themePackageURL: PW.libUrl+'js/base/plugins/pagination/theme/theme.json', themeName: 'a',//主题名称,有default,a,b,c,d,e这几种,默认是default url:'data.json',//必选,必须指定ajax的url type: 'get',//可选,默认情况下是get extraParam: {},//获取分页数据列表的额外条件 sendData: function(me,b){}, //回调函数 me指向当前的分页对象,b指向分页获取的json数据 configUrl:function(url,page,me,prevdata){//url:配置的url,page:当前的页面,me:指向当前分页,prevdata:上一次的分页数据 //var url = url+'/page/'+page+'/'+me.opts.extraParam.fromDate+'/'+me.opts.extraParam.toDate; return url; }, //初始化完成之后的回调函数 initCompleted:function(me){ S.log('初始化完成!'); }, //发送ajax之前 beforeSendAJAX:function(me){ S.log('发送ajax之前!'); }, //ajax发送失败后的回调函数 errorFun:function(me){ S.log('ajax发送失败!'); }, beforeDataLoad:function(me,data){ } }); }); }); </script>
主题包设置:
{"pagination":{"default":{"showCounter":true,"themeCounter":"Page({page})of({pageCount})","showJump":true,"themeJump":"跳到第({input})页({button})","showPageNum":true,"themeCss":"J_pagination_theme1","firstPageTip":"首页","lastPageTip":"尾页","prevPageTip":"<","nextPageTip":">"},"a":{"showCounter":true,"themeCounter":"({page})/({pageCount})","showJump":true,"themeJump":" goto({input})页({button})","showPageNum":true,"themeCss":"J_pagination_theme5","firstPageTip":"首页","lastPageTip":"尾页","prevPageTip":"<","nextPageTip":">"},"b":{"showCounter":true,"themeCounter":"({page})/({pageCount})","showJump":false,"themeJump":"跳到第({input})页({button})","showPageNum":false,"themeCss":"J_pagination_theme2","firstPageTip":"<<","lastPageTip":">>","prevPageTip":"<","nextPageTip":">"},"c":{"showCounter":true,"themeCounter":"({page})/({pageCount})","showJump":true,"themeJump":" 跳到第({input})页({button})","showPageNum":true,"themeCss":"J_pagination_theme3","firstPageTip":"<<","lastPageTip":">>","prevPageTip":"<","nextPageTip":">"},"d":{"showCounter":true,"themeCounter":"({page})/({pageCount})","showJump":true,"themeJump":" goto({input})页({button})","showPageNum":true,"themeCss":"J_pagination_theme4","firstPageTip":"<<","lastPageTip":">>","prevPageTip":"<","nextPageTip":">"},"e":{"showCounter":true,"themeCounter":"({page})/({pageCount})","showJump":true,"themeJump":" goto({input})页({button})","showPageNum":true,"themeCss":"J_pagination_theme4","firstPageTip":"<<","lastPageTip":">>","prevPageTip":"<","nextPageTip":">"}}}
实际运行的效果如附件
有好的想法欢迎留言
评论
3 楼
zhanghh315
2012-09-18
shenlm203 写道
你至少弄个例子啊,要不然谢了谁看啊!
全部都拿出来,出问题谁负责啊,笨蛋!
2 楼
shenlm203
2012-09-18
1 楼
shenlm203
2012-09-18
你至少弄个例子啊,要不然谢了谁看啊!
发表评论
-
分页 v2.0.0
2014-05-10 16:44 182个多月的 ... -
客户端实现准确的服务器时间同步 [转]
2014-04-16 11:35 2565一、问题描述 需要解决的问题很简单,就是如何在页面上比较准 ... -
[转]js事件大全
2014-03-19 20:50 458一般事件 事件 onClick ... -
转:pjax:ajax和pushState结合的js库
2012-11-28 19:02 3pajax是使用ajax+pushState打造无刷新改 ... -
【转】jquery ajax多次请求数据时 不刷新问题
2012-07-14 17:03 1618jquery的ajax在频繁请求数据时,或者重复请求数据的时会 ...
相关推荐
**JavaScript分页插件概述** 在网页开发中,分页是一种常见的数据展示方式,它能够有效地组织大量数据,提高用户体验。本项目提供的“适配所有浏览器的js分页插件”是一个轻量级且易用的解决方案,尤其适用于那些...
2. Pagination.js:一个独立的JavaScript分页库,支持自定义分页样式,支持Ajax请求数据。 3. vue-paginate:针对Vue.js框架的分页组件,易用且高度可定制。 4. react-pagination:适用于React应用的分页组件,可与...
3. **纯JavaScript分页**:不依赖任何外部库,通过JavaScript实现分页逻辑。例如,可以使用数组或对象存储数据,根据当前页数动态渲染页面内容。 4. **AJAX分页**:使用AJAX异步加载数据,用户在切换页面时无需刷新...
综上所述,“漂亮的js分页效果”涉及多个JavaScript和前端开发的关键概念,包括JavaScript基础、DOM操作、事件监听、AJAX请求、CSS样式设计、响应式布局、模块化编程以及用户体验优化等。通过理解并熟练掌握这些知识...
js pagination插件是一个流行的JavaScript分页解决方案,它允许开发者轻松实现无刷新分页。这个插件通常包括CSS样式文件(如pagination.css)用于定义分页元素的外观,以及JavaScript文件(如jquery.pagination.js)...
4. **JavaScript分页逻辑**:`spagination.js` 是核心脚本,包含了分页功能的实现。主要包括计算总页数、生成页码按钮、监听按钮点击事件、更新当前页等功能。开发者需要了解如何根据数据量和每页显示的数量来计算总...
这个压缩包中包含了多个JavaScript分页代码示例,适合网页开发者参考和直接应用。 分页效果的实现通常包括以下几个核心部分: 1. 数据获取:首先,需要获取要分页展示的数据。这些数据可以来源于服务器端(如通过...
在这个案例中,JavaScript分页组件可能是用AJAX(Asynchronous JavaScript and XML)技术实现的。当用户点击分页按钮时,JavaScript会异步发送请求到Servlet,Servlet处理请求并返回新的数据,然后JavaScript更新DOM...
- 根据文件名,如"12_154640_a8zdJSpage0.06v20050426",我们可以推测这可能是一个名为"JSpage"的JavaScript分页库的不同版本。"0.06"可能是版本号,而"20050426"可能是发布日期。 - 同理,其他类似命名的文件可能...
这篇博客 "js分页插件(附上用法描述)" 提供了关于JavaScript分页插件的详细信息,虽然具体的代码没有直接给出,但通常会涵盖以下几个核心知识点: 1. **分页原理**:分页主要基于服务器端和客户端的交互。服务器...
总结来说,JavaScript分页是一个涉及数据处理、用户交互和页面更新的过程。通过封装分页函数,我们可以使代码更加模块化,易于理解和维护。在实际开发中,可以根据项目需求进行定制,比如结合前端框架(如React、Vue...
你可以通过阅读和分析这两个文件来学习如何实现一个完整的JavaScript分页解决方案。在实际应用中,还可以考虑添加更多的特性,如分页样式定制、分页效果动画、当前页码显示等,以满足不同项目的需求。
自己写的一个js分页控件.已经封装,可以直接使用. 适合各种用途的分页控制. 如果界面不够美观,只需要修改css即可.
JavaScript分页是网页开发中一个常见且重要的功能,它用于处理大量数据的显示,通过将数据分割成小块,逐页加载,提高了用户体验并优化了页面性能。在本项目中,我们将探讨如何使用纯JavaScript实现分页功能,以及...
在这个主题中,我们将深入探讨JavaScript分页的实现原理、设计模式以及如何利用CSS来定制样式。 首先,JavaScript分页的基本原理是通过计算总页数,根据用户的当前页码展示相应的内容。通常,我们会在后端获取数据...
这里提到的"JS分页控件+CSS"是一个针对网页分页功能的解决方案,结合了JavaScript(JS)和层叠样式表(CSS)的技术。下面我们将深入探讨这两个关键组成部分以及它们如何协同工作。 **JS分页控件** JavaScript是一...
JavaScript分页插件是一种在网页上实现数据分页显示的工具,它可以帮助开发者轻松地将大量数据分成多个页面,提供用户友好的浏览体验。在这个场景中,你提到的"js分页插件"是一个只有2KB大小的轻量级插件,包含3个...
javascript 分页
在这个“js分页实例asp服务端”的示例中,我们将探讨如何结合JavaScript(js)前端技术和ASP服务端技术来实现动态数据分页。 首先,我们需要理解分页的基本原理。分页通常涉及到两个主要部分:前端的用户界面(UI)...
总的来说,"js分页效果"是一个综合性的前端开发任务,涵盖了JavaScript基础、DOM操作、事件处理、数据交互、动画效果等多个方面。通过这个示例,开发者不仅可以学习到分页的实现技巧,还能加深对前端开发整体流程的...