一個好的分頁算法, 應該具有下面的優點:
當前頁碼應該盡量在正中間.
如果"首頁"和"尾頁"不可用(當前處於第一頁或最後一頁), 不要隱藏這兩組文字, 以免鏈接按鈕位置變動.
算法簡單.
下面的算法具有前面1和3兩個優點.
復制代碼 代碼如下:
// $curr_index, 當前頁碼.
// $link_count, 鏈接數量.
// $page_count, 當前的數據的總頁數.
// $start, 顯示時的起始頁碼.
// $end, 顯示時的終止頁碼.
$start = max(1, $curr_index - intval($link_count/2));
$end = min($start + $link_count - 1, $page_count);
$start = max(1, $end - $link_count + 1);
start = Math.max(1, curr_index - parseInt(link_count/2));
end = Math.min(page_count, start + link_count - 1);
start = Math.max(1, end - link_count + 1);