关于借助prototype进行分页的一个小插件

Posted Light_LoverSong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于借助prototype进行分页的一个小插件相关的知识,希望对你有一定的参考价值。

(function (win, undefined) {
  var pagefen = win.pagefen = function (inforAllcount) {
  this.nowpage = 1; //当前页
  this.pagecount = 10; //一次性加载十条
  //总共有多少页
  this.pageAllcount = (inforAllcount % this.pagecount == 0 ? (inforAllcount / this.pagecount) : (parseInt(inforAllcount / this.pagecount) + 1));

};
//上一页的方法 (当前页,每页显示的条数)
pagefen.prototype.uppage = function (nowpage, pagecount) {
  this.nowpage -= 1;
  this.nowpage = (this.nowpage == 0 ? 1 : this.nowpage)
  pagecontrol.seach(this.nowpage, this.pagecount);
}
//下一页的方法
pagefen.prototype.nextpage = function (nowpage, pagecount) {
  this.nowpage += 1;
  this.nowpage = (this.nowpage == (this.pageAllcount + 1) ? this.pageAllcount : this.nowpage);
  pagecontrol.seach(this.nowpage, this.pagecount);
  }
} (window));

//查询方法
var pagecontrol = {
  seach: function (nowpage, pagecount) {
  var pagefirst = (nowpage - 1) * pagecount + 1; //1条数据
  var pageend = nowpage * pagecount; //10条数据
  $(‘.addlistul li‘).hide();
  $(‘.addlistul li‘).slice(pagefirst - 1, pageend).show();
  }
};

 

$(function(){

  //此处是获取数据 添加进去ul里面的地方
  var ele = $(‘.addlistul‘);
  for (var i = 0; i < 100; i++) {
    ele.append("<li>" + (i + 1) + "</li>");
  }

  //实例化分页
  var pageMethod = new pagefen(100);
    pagecontrol.seach(1, 10);
  //上一页修改当前页加一
  $(‘.have_small‘).click(function () {
    pageMethod.uppage(this.nowpage, this.pagecount);
  });
  //下一页修改当前页减一
  $(‘.next_page‘).click(function () {
    pageMethod.nextpage(this.nowpage, this.pagecount);
  });

  //点击数字显示第几页的时候
  $(‘.num‘).click(function () {
    var getnumpage = parseInt($(this).text());

    //当前选中的页数然后调用查询方法

    pagecontrol.seach(getnumpage, 10);
    pageMethod.nowpage = getnumpage;
  });

});

 

<div class="r-h-3">
  <ul class="addlistul"></ul>
</div>

以上是关于关于借助prototype进行分页的一个小插件的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis是如何进行分页的?

uniapp 微信小程序实现上拉分页

ThinkPHP框架中关于查询分页显示的一个小方法

关于mybatis物理分页的问题,求大神帮忙看看

关于小工具对数据库进行分页查询

ABP之展现层(Datatables分页)