guestbook_admin.htm
5.4 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>" />
<title>我的留言本 - 会员中心 - <?php echo $cfg_webname; ?></title>
<link href="templets/style/base.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="templets/js/j.js"></script>
<script type="text/javascript" language='javascript' src='templets/js/main.js'></script>
<script type="text/javascript" language="javascript" src="../include/dedeajax2.js"></script>
<script type="text/javascript" src="templets/js/table_function.js"></script>
<script type="text/javascript" src="templets/js/leftmenu.js"></script>
<script type="text/javascript">
var reMethod = "<?php echo ($cfg_soft_lang == 'utf-8') ? 'POST' : 'GET';?>";
var pageno = 1;
var totalrow = <?php echo $totalRow; ?>;
var pagesize = <?php echo $pagesize; ?>;
var selitem = 0;
//加载列表
function ReloadPage(){
$("#rslist").html("加载中...<br>[<a href=\"javascript:LoadPage('"+pageno+"')\"><u>点击此重新加载列表</u></a>]");
$.ajax({type: reMethod,url: "guestbook_admin.php",
data: "dopost=getlist&pageno="+pageno,
dataType: 'html',
success: function(result){$("#rslist").html(result);}
});
}
//载入指定页的列表
function LoadPage(npage){
pageno = npage;
ReloadPage();
ReloadPageNum(pageno);
}
//删除留言
function DelNote(nid){
if(!window.confirm('你确定要删除这则留言吗?'))
{
return false;
}
totalrow = totalrow - 1;
var pagenum = Math.ceil(totalrow/pagesize);
if(pagenum<=pageno) pageno = pagenum;
$("#rslist").html("加载中...<br>[<a href=\"javascript:LoadPage('"+pageno+"')\"><u>点击此重新加载列表</u></a>]");
$.ajax({type: reMethod,url: "guestbook_admin.php",
data: "dopost=del&aid="+nid+"&pageno="+pageno,
dataType: 'html',
success: function(result){$("#rslist").html(result);}
});
LoadPage(pageno);
}
//获得选中文项的ID
function getCheckboxItem()
{
var allSel="";
selitem = 0;
if(document.form1.ids.value){
selitem++;
return document.form1.ids.value;
}
for(i=0;i<document.form1.ids.length;i++){
if(document.form1.ids[i].checked){
if(allSel=="") allSel=document.form1.ids[i].value;
else allSel=allSel+","+document.form1.ids[i].value;
selitem++;
}
}
return allSel;
}
//批量删除留言
function DelNotes(){
var listArea = $Obj('rslist');
var aids = getCheckboxItem();
if(selitem==0)
{
alert("你没选中任何内容!");
return false;
}
if(!window.confirm('你确定要删除这些留言吗?'))
{
return false;
}
totalrow = totalrow - selitem;
var pagenum = Math.ceil(totalrow/pagesize);
if(pagenum<=pageno) pageno = pagenum;
$("#rslist").html("加载中...<br>[<a href=\"javascript:LoadPage('"+pageno+"')\"><u>点击此重新加载列表</u></a>]");
$.ajax({type: reMethod,url: "guestbook_admin.php",
data: "dopost=del&ids="+aids+"&pageno="+pageno,
dataType: 'html',
success: function(result){$("#rslist").html(result);}
});
LoadPage(pageno);
}
//重新加载分页列表
function ReloadPageNum(startnum){
var pagenum = Math.ceil(totalrow/pagesize);
var listsize = 3;
var ahtml = "";
var startloop = 1;
var endnum = 0;
ahtml += "<span>共:"+totalrow+" 条记录/"+pagenum+"页</span> ";
if(pageno>1) ahtml += "<a href='#' onclick='LoadPage("+(pageno-1)+")'>↑上页</a> ";
if(startnum >= pagenum-listsize){
startloop = pagenum-(listsize*2);
if(startloop<1) startloop = 1;
for(i=startloop;i<=pagenum;i++){
if(i==pageno) ahtml += "<span style='color:#555;font-weight:bold;'>"+i+"</span>";
else ahtml += "<a href='#' onclick='LoadPage("+i+")'>"+i+"</a> ";
}
}
else if(pagenum < listsize){
for(i=1;i<=pagenum;i++){
if(i==pageno) ahtml += "<span style='background:#006600; color:#FFFFFF;'>"+i+"</span>";
else ahtml += "<a href='#' onclick='LoadPage("+i+")'>"+i+"</a> ";
}
}
else{
startloop = startnum-listsize;
if(startloop<1){ startloop=1; endnum = startloop + (listsize*2); }
else{ endnum = startnum+listsize; }
if(endnum >= pagenum) endnum = pagenum;
for(i=startloop;i<=endnum;i++){
if(i==pageno) ahtml += "<span style='background:#006600; color:#FFFFFF;'>"+i+"</span>";
else ahtml += "<a href='#' onclick='LoadPage("+i+")'>"+i+"</a> ";
}
}
if(pageno<pagenum) ahtml += "<a href='#' onclick='LoadPage("+(pageno+1)+")'>下页↓</a> ";
$('#pagelist').html(ahtml);
}
</script>
</head>
<body>
<div id="main">
<?php include(DEDEMEMBER."/templets/head.htm"); ?>
<div id="content" class="w960 clearfix">
<?php include(DEDEMEMBER."/templets/menu.php"); ?>
<div id="mcpmain">
<div id="appTab">
<ul>
<li class="thisTab"><a href="#"><span>留言板</span></a></li>
</ul>
<div class="tabOther">
<button id="checkedClick" type="button" class="greenBtn1">全选</button>
<button type="button" onclick="DelNotes()" class="greenBtn3">删除选中</button>
</div>
</div>
<div id="mainCp">
<form name="form1">
<span id='rslist'>
<?php GetList($dsql,$pageno,$pagesize,'aid'); ?>
</span>
</form>
<div id="pagelist"></div>
<!--主操作区域 -->
<script type="text/javascript">
ReloadPageNum(1);
</script>
</div>
</div>
</div>
<?php include(DEDEMEMBER."/templets/foot.htm"); ?>
</div>
</body>
</html>