1showpage.js
资源名称:haohj.rar [点击查看]
上传用户:angela
上传日期:2022-05-11
资源大小:853k
文件大小:5k
源码类别:
外挂编程
开发平台:
ASP/ASPX
- <!--
- //ASP分页函数
- function ShowListPage(page,Pcount,TopicNum,maxperpage,strLink,ListName){
- var alertcolor = '#FF0000';
- maxperpage=Math.floor(maxperpage);
- TopicNum=Math.floor(TopicNum);
- page=Math.floor(page);
- var n,p;
- if ((page-1)%5==0) {
- p=(page-1) /5
- }else{
- p=(((page-1)-(page-1)%5)/5)
- }
- if(TopicNum%maxperpage==0) {
- n=TopicNum/maxperpage;
- }else{
- n=(TopicNum-TopicNum%maxperpage)/maxperpage+1;
- }
- document.write ('<table border="0" cellpadding="0" cellspacing="1" class="Tableborder3">');
- document.write ('<tr align="center">');
- document.write ('<td class="tabletitle1" title="'+ListName+'"> '+ListName+' </td>');
- document.write ('<td class="tabletitle1" title="总数"> '+TopicNum+' </td>');
- document.write ('<td class="tabletitle1" title="每页"> '+maxperpage+' </td>');
- document.write ('<td class="tabletitle1" title="页次"> '+page+'/'+Pcount+'页 </td>');
- if (page==1){
- document.write ('<td class="tablebody1"> <font face=webdings>9</font> </td>');
- }else{
- document.write ('<td class="tablebody1"> <a href="?action=cat&page=1'+strLink+'" title="首页"><font face=webdings>9</font></a> </td>');
- }
- if (p*5 > 0){
- document.write ('<td class="tablebody1"> <a href="?action=cat&page='+p*5+strLink+'" title="上五页"><font face=webdings>7</font></a> </td>');
- }
- for (var i=p*5+1;i<p*5+6;i++){
- if (i==page){
- document.write ('<td class="tablebody2"> <font class="normalTextSmall"><u><b>'+i+'</b></u></font> </td>');
- }else{
- document.write ('<td class="tablebody1"> <a href="?action=cat&page='+i+strLink+'">'+i+'</a> </td>');
- }
- if (i==n) break;
- }
- if (i<n){
- document.write ('<td class="tablebody1"> <a href="?action=cat&page='+i+strLink+'" title="下五页"><font face=webdings>8</font></a> <td>');
- }
- if (page==n){
- document.write ('<td class="tablebody1"> <Font face=webdings>:</font> </td>');
- }else{
- document.write ('<td class="tablebody1"> <a href="?action=cat&page='+n+strLink+'" title="尾页"><font face=webdings>:</font></a> </td>');
- }
- document.write ('</tr>');
- document.write ('</table>');
- }
- //HTML分页函数
- function ShowHtmlPage(page,Pcount,TopicNum,maxperpage,strLink,ExtName,ListName){
- var alertcolor = '#FF0000';
- maxperpage=Math.floor(maxperpage);
- TopicNum=Math.floor(TopicNum);
- page=Math.floor(page);
- var n,p;
- if ((page-1)%5==0) {
- p=(page-1) /5
- }else{
- p=(((page-1)-(page-1)%5)/5)
- }
- if(TopicNum%maxperpage==0) {
- n=TopicNum/maxperpage;
- }else{
- n=(TopicNum-TopicNum%maxperpage)/maxperpage+1;
- }
- document.write ('<table border="0" cellpadding="0" cellspacing="1" class="Tableborder3">');
- document.write ('<form method=post>');
- document.write ('<tr align="center">');
- document.write ('<td class="tabletitle1" title="'+ListName+'"> '+ListName+' </td>');
- document.write ('<td class="tabletitle1" title="总数"> '+TopicNum+' </td>');
- document.write ('<td class="tabletitle1" title="每页"> '+maxperpage+' </td>');
- document.write ('<td class="tabletitle1" title="页次"> '+page+'/'+Pcount+'页 </td>');
- if (page==1){
- document.write ('<td class="tablebody1"> <font face=webdings>9</font> </td>');
- }else{
- document.write ('<td class="tablebody1"> <a href="'+strLink+subjoin(1)+ExtName+'" title="首页"><font face=webdings>9</font></a> </td>');
- }
- if (p*5 > 0){
- document.write ('<td class="tablebody1"> <a href="'+strLink+subjoin(p*5)+ExtName+'" title="上五页"><font face=webdings>7</font></a> </td>');
- }
- for (var i=p*5+1;i<p*5+6;i++){
- if (i==page){
- document.write ('<td class="tablebody2"> <font class="normalTextSmall"><u><b>'+i+'</b></u></font> </td>');
- }else{
- document.write ('<td class="tablebody1"> <a href="'+strLink+subjoin(i)+ExtName+'">'+i+'</a> </td>');
- }
- if (i==n) break;
- }
- if (i<n){
- document.write ('<td class="tablebody1"> <a href="'+strLink+subjoin(i)+ExtName+'" title="下五页"><font face=webdings>8</font></a> <td>');
- }
- if (page==n){
- document.write ('<td class="tablebody1"> <Font face=webdings>:</font> </td>');
- }else{
- document.write ('<td class="tablebody1"> <a href="'+strLink+subjoin(n)+ExtName+'" title="尾页"><font face=webdings>:</font></a> </td>');
- }
- document.write ('<td class="tabletitle1" title="转到"> GO </td>');
- document.write ('<td class="tablebody1"><select class="PageInput" name="page" size="1" onchange="javascript:window.location=this.options[this.selectedIndex].value;">');
- for (var i=1;i<TopicNum;i++){
- if (i==page){
- document.write ('<option value="'+strLink+subjoin(i)+ExtName+'" selected>第'+i+'页</option>');
- }else{
- document.write ('<option value="'+strLink+subjoin(i)+ExtName+'">第'+i+'页</option>');
- }
- if (i==n) break;
- }
- document.write ('</select></td>');
- document.write ('</tr>');
- document.write ('</form></table>');
- }
- function subjoin(what) {
- if (what < 10){
- str = '00'+what;
- }else{
- if (what>9 && what<100)
- {
- str = '0'+what;
- }else{
- str = what;
- }
- }
- return str;
- }
- //-->