让人生与事业结伴,让生命与使命同行。你要按你所想的去生活,否则,你迟早会按你所生活的去想。
打开 includearc.listview.class.php 找到
$total_list = $list_len * 2 + 1;
这里有2处,都需要在它的下面加入
//省略号
if ($totalpage > $total_list) { $half = floor(($total_list - 4) / 2); $half_start = $this->PageNo - $half + 1; if ($total_list % 2 !== 0) --$half_start; $half_end = $this->PageNo + $half; } if (($totalpage - $this->PageNo) < ($total_list - 3)) { $half_start = $totalpage - $total_list + 3; unset($half_end); } if ($this->PageNo <= ($total_list - 3)) { $half_end = $total_list - 2; unset($half_start); } |
if (isset($half_start) && $j < $half_start && $j > 1) { if ($j == 2) $listdd .= "<li style='border:0;'><a rel="nofollow noopener noreferrer" href='javascript:void(0)'>...</a></li>"; continue; } if (isset($half_end) && $j > $half_end && $j < $totalpage) { if ($j == ($half_end + 1)) $listdd .= "<li style='border:0;'><a rel="nofollow noopener noreferrer" href='javascript:void(0)'>...</a></li>"; continue; } |
到此这篇关于dedecms织梦模板分页列表添加省略号的方法就介绍到这了。我是一个平凡的人,我平凡但我并不平庸,我只是在等,等待化蛹为蝶的那个一刻。更多相关dedecms织梦模板分页列表添加省略号的方法内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!