php版本js版本,分页控件代码逻辑(JS版本&PHP版本)

JS版本:

//total_page:总页数 //boundary:页数临界值 //front_range:前段显示页码数 //mid_range:中段显示页码数 //rear_range后段显示页码数 //page_size:每页记录数 var pagination_config = {total_page : 10,current_page:1, boundary : 7, front_range : 1, mid_range : 5,rear_range : 1,page_size:10}; /** * 分?格式?理,ex. prev 1 ... 8 9 10 11 12 ... 20 next * @return array 要?示的?? */ function pagintion_array() { var total_page = pagination_config.total_page, boundary = pagination_config.boundary, front_range = pagination_config.front_range, mid_range = pagination_config.mid_range, rear_range = pagination_config.rear_range, current_page = pagination_config.current_page; var pagintion = []; current_page = (current_page > total_page) ? total_page : current_page; // ???小於???界值,??示所有?? if (total_page <= boundary) { for (i = 1; i <= total_page; i++) { pagintion.push(i); } } else { var front_end = front_range; // 前段最後一??? var mid_start = current_page - Math.ceil(parseFloat(mid_range - 1) / 2); // 中段第一??? var mid_end = current_page + ((mid_range - 1) - Math.ceil((mid_range - 1) / 2)); // 中段最後一??? var rear_start = total_page - rear_range + 1; // 後段第一??? // 中段第一???小於等於1,中???往左位移 while (mid_start <= 1) { if (mid_start < 1) mid_end += 1; mid_start += 1; } // 中段第一???大於等於???,中???往右位移 while (mid_end >= total_page) { if (mid_end > total_page) mid_start -= 1; mid_end -= 1; } // 取出需要?示的??? for (var i = 1; i <= total_page; i++) { if (i <= front_end || (i >= mid_start && i <= mid_end) || i >= rear_start) { if (i - pagintion[pagintion.length-1] > 1) { pagintion.push('...'); } pagintion.push(i); } } } return pagintion; } /** * 拼装分页的 html ; * 样式 for jquery.simplepagination * @return string */ function create_html() { var current_page = pagination_config.current_page, total_page = pagination_config.total_page; if(total_page<=1){ return; } var html = ''; //计算总页数; //计算分页 var pagintion = pagintion_array(); //上一页 //上一页 不可点击 if (current_page <= 1) { html+=''+page_id+''; } else if (page_id == '...') { html+='

...'; } else { html+='

到第'; html+='

'; html+='

页'; html+='

确定'; html+=''; $('.pagintion').children().remove(); $('.pagintion').append(html); $(".pagintion").find('[data-page-index]').on("click",function(){ if($(this).data('page-index')!=pagination_config.current_page){ pagination_config.current_page = $(this).data('page-index'); //绑定列表 get_comment_list(); } }) } }

PHP版本:

0) { foreach ($config as $key => $val) { if (isset($this->$key)) { $this->$key = $val; } } } } /** * 分?格式?理,ex. prev 1 ... 8 9 10 11 12 ... 20 next * copy from Store_lib.pagintion , 从Store_lib中复制过来 * @param int $current_page ?前?? * @param int $total_page ??? * @param int $boundary ???界值 * @param int $front_range 前段?示??? * @param int $mid_range 中段?示??? * @param int $rear_range 後段?示??? * @return array 要?示的?? */ public function pagintion_array($current_page = 1, $total_page = 10, $boundary = 7, $front_range = 1, $mid_range = 5, $rear_range = 1) { $pagintion = array(); $current_page = ($current_page > $total_page) ? $total_page : $current_page; // ???小於???界值,??示所有?? if ($total_page <= $boundary) { for ($i = 1; $i <= $total_page; $i++) { $pagintion[] = $i; } } else { $front_end = $front_range; // 前段最後一??? $mid_start = $current_page - ceil(($mid_range - 1) / 2); // 中段第一??? $mid_end = $current_page + (($mid_range - 1) - ceil(($mid_range - 1) / 2)); // 中段最後一??? $rear_start = $total_page - $rear_range + 1; // 後段第一??? // 中段第一???小於等於1,中???往左位移 while ($mid_start <= 1) { if ($mid_start < 1) $mid_end += 1; $mid_start += 1; } // 中段第一???大於等於???,中???往右位移 while ($mid_end >= $total_page) { if ($mid_end > $total_page) $mid_start -= 1; $mid_end -= 1; } // 取出需要?示的??? for ($i = 1; $i <= $total_page; $i++) { if ($i <= $front_end || ($i >= $mid_start && $i <= $mid_end) || $i >= $rear_start) { if ($i - (int) end($pagintion) > 1) { $pagintion[] = '...'; } $pagintion[] = $i; } } } return $pagintion; } /** * 拼装分页的 html ; * 样式 for jquery.simplepagination * @return string */ function create_html() { $html = ''; //计算总页数; //计算分页 $pagintion = $this->pagintion_array($this->current_page, $this->total_page, $this->boundary, $this->front_range, $this->mid_range, $this->rear_range); //上一页 //上一页 不可点击 if ($this->current_page <= 1) { $html.='

上一页'; } else { //上一页可点击 $page_prev = $this->current_page - 1; $html.='

' . $page_id . ''; } elseif ($page_id == '...') { $html.='

…'; } else { $html.='

下一页'; } else { //下一页 可点击 $page_next = $this->current_page + 1; $html.=''; return $html; }}

预览效果:

本文原创发布php中文网,转载请注明出处,感谢您的尊重!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值