forked from hivefans/phphbaseadmin
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjquery-tablepage-1.0.js
84 lines (63 loc) · 2.06 KB
/
jquery-tablepage-1.0.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
作者:hsu po-wei
E-Mail:[email protected]
授權:GPL 3
*/
(function($){
$.fn.tablepage = function(oObj, dCountOfPage) {
var dPageIndex = 1;
var dNowIndex = 1;
var sPageStr = "";
var dCount = 0;
var oSource = $(this);
var sNoSelColor = "#CCCCCC";
var sSelColor = "black";
var sFontColor = "white";
change_page_content();
function change_page_content()
{
//取得資料筆數
dCount = oSource.children().children().length - 1;
//顯示頁碼
sPageStr = "<table><tr><td style='height:30px;'><b>第</b></td>";
dPageIndex = 1;
for (var i = 1; i <= dCount; i += dCountOfPage)
{
if (dNowIndex == dPageIndex)
{
sPageStr += "<td valign='top'><table style='width:20px;height:20px;cursor:pointer;color:" + sFontColor + ";border-collapse:collapse;border-style:solid;border-width:1px;border-color:" + sSelColor + ";background-color:" + sSelColor + "'><tr><th>" + (dPageIndex++) + "</th></tr></table></td>";
}
else
{
sPageStr += "<td valign='top'><table style='width:20px;height:20px;cursor:pointer;color:" + sFontColor + ";border-collapse:collapse;border-style:solid;border-width:1px;border-color:" + sNoSelColor + ";background-color:" + sNoSelColor + "'><tr><th>" + (dPageIndex++) + "</th></tr></table></td>";
}
}
sPageStr += "<td><b>頁</b></td></tr></table>";
oObj.html(sPageStr);
dPageIndex = 1;
//過濾表格內容
oSource.children().children("tr").each( function () {
if (dPageIndex <= (((dNowIndex - 1) * dCountOfPage) + 1) || dPageIndex > ((dNowIndex * dCountOfPage) + 1))
{
$(this).hide();
}
else
{
$(this).show();
}
dPageIndex++;
});
oSource.children().children("tr").first().show(); //head一定要顯示
//加入換頁事件
oObj.children().children().children().children().each( function () {
$(this).click( function () {
dNowIndex = $(this).find("tr").text();
if (dNowIndex > 0)
{
change_page_content();
}
});
});
}
};
})(jQuery);