JavaScript实现前端分页控件
程序员文章站
2022-07-04 21:31:21
现在web注重用户体验与交互性,ajax 提交数据的方式很早就流行了,它能够在不刷新网页的情况下局...
现在web注重用户体验与交互性,ajax 提交数据的方式很早就流行了,它能够在不刷新网页的情况下局部刷新数据。前端分页多是用ajax请求数据(其他方式也有比如手动构造表单模拟提交事件等)。通过js将查询参数构造好发向后台,后台处理后以特定的格式返回,多为json,比较流行处理起来也很方便。当后台数据到达后,浏览器重新渲染界面当然也包括js分页控件,如果觉得每次绘制分页控件对前端性能有影响也可以不绘制,但实现起来相对麻烦。
本人写的分页控件参考了其他网友的代码,链接忘了,控件接受四个参数或一个对象,其实是一样的对于后者只不过将四个参数放在一个对象中。pindex:每次请求的页码,psize:每次请求的页容量,container: 放分页控件的容器,fn:如何向服务器请求数据
代码中主要用到了闭包,将上一次的请求信息保存起来,以备下次使用,虽然代码可以直接拿来用但是样式不是通用的,需要每次调样式还好样式比较简单。
function pagination(obj){ /*pageindex: index, pagesize: size, count: count, container: container, fn : fn */ if(!obj||typeof obj!="object"){ return false; } var pageindex= obj.pageindex||1, pagesize=obj.pagesize||10, count= obj.count||0, container= obj.container, callback=obj.fn||function(){}; var pagecount =math.ceil(count/pagesize); if(pagecount==0){ return false ; } if(pagecount<pageindex){ return false; } /*事件绑定*/ function bindevent(){ //上一页事件 $(container).find(">ul>.pg-prev").unbind("click").bind("click",function(){ if(pageindex <=1){ return false ; } if(typeof callback=="function"){ pageindex--; pageindex = pageindex<1?1:pageindex; obj.pageindex= pageindex; callback(pageindex); pagination(obj); } }); //下一页事件 $(container).find(">ul>.pg-next").unbind("click").bind("click",function(){ if(pageindex ==pagecount){ return false ; } if(typeof callback=="function"){ pageindex++; pageindex =pageindex >pagecount?pagecount:pageindex; obj.pageindex= pageindex; callback(pageindex); pagination(obj); } }); $(container).find(">ul>li:not(.pg-more):not(.pg-prev):not(.pg-next)").unbind("click").bind("click",function(){ pageindex= +$(this).html(); pageindex = isnan(pageindex)?1:pageindex; obj.pageindex= pageindex; if(typeof callback=="function"){ callback(pageindex); pagination(obj); } }); }; /*画样式*/ function printhead(){ var html=[]; html.push('<li class="pg-prev '+(pageindex==1?"pg-disabled":"")+'">上一页</li>'); return html.join(""); } function printbody(){ var html=[]; var render=function(num,start){ start=start||1; for(var i=start;i<=num;i++){ html.push('<li class="'+(pageindex==i?"pg-on":"")+'">'+i+'</li>'); } } if(pagecount<=7){ render(pagecount); }else{ if(pageindex <4){ render(4); html.push('<li class="pg-more">...</li>'); html.push('<li >'+pagecount+'</li>'); }else{ html.push('<li >1</li>'); html.push('<li class="pg-more">...</li>'); if(pagecount-pageindex>3){ render(pageindex+1,pageindex-1); html.push('<li class="pg-more">...</li>'); html.push('<li >'+pagecount+'</li>'); }else{ render(pagecount,pagecount-3); } } } return html.join(""); } function printtail(){ var html=[]; html.push('<li class="pg-next '+(pageindex==pagecount?"pg-disabled":"")+'">下一页</li>'); return html.join(""); } function show(){ container.innerhtml= '<ul>'+printhead()+printbody()+printtail()+'</ul>'; } show(); bindevent(); }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。