前言:
之前的分頁有個問題在於,當總頁數只有一頁的時候,也顯示了這個分頁
所以要前台判斷總頁數,大於一頁或等於一頁時候,分別顯示隱藏分頁
現在把這個判斷放在封裝好的函式裡,前台就不用判斷了,直接使用
等於一頁的時候,不顯示分頁,大於一頁的時候,顯示分頁
分頁
引入的paging.js
(function($, window, document, undefined) ;
//根據形參初始化分頁html和css**
this.init();
} //對paging的例項物件新增公共的屬性和方法
paging.prototype = ,
creathtml: function() else
}content += ". . .";
content += ""+total+"";
} else else
}content += ". . .";
content += ""+total+"";
//頁碼在中間部分時候
} else else }}
}//頁面總數小於6的時候
} else else }}
content += "尾頁";
content += "共"+total+"頁 ";
// content += "共"+totalnum+"條記錄 ";
if(total>1)
},//新增頁面操作事件
bindevent: function() else
} else if(id == "nextpage") else
} else if(id =="firstpage") else if(id =="lastpage") else
me.creathtml();
if(me.options.callback)
});} };
//通過jquery物件初始化分頁物件
$.fn.paging = function(options)
})(jquery, window, document);
php分頁資料最後一頁繼續追加第一頁資料
一般情況我們寫資料分頁都是如下 分頁碼 page request page 顯示條數 limit 10 分頁開始條數 start limit page 1 limit 執行sql語句得到的結果 list model table limit start limit limit findall 返回資料...
php分頁資料最後一頁繼續追加第一頁資料
一般情況我們寫資料分頁都是如下 分頁碼 page request page 顯示條數 limit 10 分頁開始條數 start limit page 1 limit 執行sql語句得到的結果 list model table limit start limit,limit findall 返回資料...
分頁外掛程式3 指定到某一頁
前言 頁數多了以後需要指定到某一頁 只做了功能,樣式沒有細調 html 分頁 paging.js function window,document,undefined 根據形參初始化分頁html和css this.init 對paging的例項物件新增公共的屬性和方法 paging2.prototy...