最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Javascript實(shí)現(xiàn)的分頁函數(shù)

 更新時(shí)間:2007年02月07日 00:00:00   作者:  

/**
 * 分頁類構(gòu)造
 * 參數(shù) nTotalList: 總條數(shù)
 * 參數(shù) nPageSize: 每頁顯示條數(shù)
 * 參數(shù) nPageNum: 當(dāng)前頁碼
 * 參數(shù) sPageUrl: 分頁鏈接的URL,頁碼以[pn]代替,輸出時(shí)將被替換為實(shí)際頁碼
 * 參數(shù) nPageListSize: 頁碼列表(下拉框)中顯示的最多頁碼條數(shù)。該參數(shù)可省略,默認(rèn)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直接輸出
 * 無參數(shù)
 * 無返回值
 */
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 + " 條 當(dāng)前第 ";
  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);
}

相關(guān)文章

最新評(píng)論

白玉县| 衡阳市| 广东省| 保定市| 海安县| 广平县| 琼中| 离岛区| 永昌县| 云林县| 贡嘎县| 东阳市| 玛沁县| 山东省| 阿克| 新兴县| 林州市| 郴州市| 莎车县| 荃湾区| 西乌珠穆沁旗| 吉林省| 临泉县| 定远县| 共和县| 华宁县| 大埔县| 长宁区| 楚雄市| 进贤县| 松原市| 陆良县| 南充市| 黄骅市| 偃师市| 苍山县| 黎平县| 望江县| 泌阳县| 西吉县| 镇沅|