国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

Javascript實現的分頁函數

2019-11-21 02:17:10
字體:
來源:轉載
供稿:網友

/**
 * 分頁類構造
 * 參數 nTotalList: 總條數
 * 參數 nPageSize: 每頁顯示條數
 * 參數 nPageNum: 當前頁碼
 * 參數 sPageUrl: 分頁鏈接的URL,頁碼以[pn]代替,輸出時將被替換為實際頁碼
 * 參數 nPageListSize: 頁碼列表(下拉框)中顯示的最多頁碼條數。該參數可省略,默認100
 */
function Pagination(nTotalList, nPageSize, nPageNum, sPageUrl, nPageListSize) {
  this.totalList = nTotalList;
  this.pageSize = nPageSize;
  this.pageNum = nPageNum;
  if (nTotalList == 0)
    this.totalPages = 1;
  else
    this.totalPages = Math.floor((this.totalList-1)/this.pageSize + 1);
  this.pageUrl = sPageUrl;
  if (arguments[4])
    this.pageListSize = nPageListSize;
  else
    this.pageListSize = 100;
}

/**
 * 生成分頁,將HTML直接輸出
 * 無參數
 * 無返回值
 */
Pagination.prototype.generate = function() {
  var output = "";
  output += "<table width=/"98%/" cellspacing=/"1/" cellpadding=/"3/" align=/"center/"><tr><td align=/"right/">";
  output += "共 " + this.totalList + " 條 每頁 " + this.pageSize + " 條 當前第 ";
  output += "<select onchange=/"if(this.value)location.href='" + this.pageUrl + "'.replace(///[pn//]/,";
  output += "this.value);/" align=/"absMiddle/" style=/"font:normal 9px Verdana,Arial,宋體;/">";
  var firstPage = this.pageNum - Math.floor(this.pageListSize/2);
  if (firstPage < 1)
    firstPage = 1;
  var lastPage = firstPage + this.pageListSize - 1;
  if (lastPage > this.totalPages) {
    lastPage = this.totalPages;
    firstPage = lastPage - this.pageListSize + 1;
    if (firstPage < 1)
      firstPage = 1;
  }
  if (firstPage > 1) {
    output += "<option value=/"1/">1</option>";
    if (firstPage > 2)
      output += "<option value=/"/">…</option>";
  }
  for (var p = firstPage; p <= lastPage; p++) {
    output += "<option value=/"" + p + "/"";
    if (p == this.pageNum)
      output += " selected=/"yes/"";
    output += ">" + p + "</option>";
  }
  if (lastPage < this.totalPages) {
    if (lastPage < this.totalPages - 1)
      output += "<option value=/"/">…</option>";
    output += "<option value=/"" + this.totalPages + "/">" + this.totalPages + "</option>";
  }
  if (this.pageNum > this.totalPages)
    output += "<option value=/"/" selected=/"yes/">頁碼超出范圍</option>";
  output += "</select>";
  output += "/" + this.totalPages + " 頁 ";
  if (this.pageNum == 1) {
    output += "[首頁] ";
    output += "[上頁] ";
  }
  else {
    output += "<a href=/"" + this.pageUrl.replace(//[pn/]/, "1") + "/">[首頁]</a> ";
    output += "<a href=/"" + this.pageUrl.replace(//[pn/]/, this.pageNum-1) + "/">[上頁]</a> ";
  }
  if (this.pageNum == this.totalPages) {
    output += "[下頁] ";
    output += "[尾頁]";
  }
  else {
    output += "<a href=/"" + this.pageUrl.replace(//[pn/]/, this.pageNum+1) + "/">[下頁]</a> ";
    output += "<a href=/"" + this.pageUrl.replace(//[pn/]/, this.totalPages) + "/">[尾頁]</a> ";
  }
  output += "</td></tr></table>";
  document.writeln(output);
}

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 栾川县| 彩票| 正镶白旗| 山西省| 衡水市| 务川| 无锡市| 车致| 贵阳市| 平远县| 邹城市| 乳山市| 澄江县| 思茅市| 巴青县| 德保县| 铜鼓县| 阿鲁科尔沁旗| 来安县| 黄大仙区| 剑阁县| 涞水县| 阳朔县| 元氏县| 永泰县| 米易县| 志丹县| 孟村| 手机| 巴塘县| 常熟市| 锡林郭勒盟| 红安县| 元江| 宜宾县| 门头沟区| 怀远县| 平阳县| 锡林浩特市| 昆明市| 三穗县|