showpage.js
上传用户:szhf331
上传日期:2022-06-22
资源大小:1032k
文件大小:5k
源码类别:

行业应用

开发平台:

JavaScript

  1. function showPages(name,totalput,MaxPerPage) { 
  2. this.name = name;     
  3. this.page = 1;        
  4. this.pageCount = 1;   
  5. this.argName = 'page';
  6. this.showTimes = 1;   
  7. this.totalput = 1;   
  8. this.MaxPerPage = 1;   
  9. }
  10. showPages.prototype.getPage = function(){
  11. var args = location.search;
  12. var reg = new RegExp('[?&]?' + this.argName + '=([^&]*)[&$]?', 'gi');
  13. var chk = args.match(reg);
  14. this.page = RegExp.$1;
  15. }
  16. showPages.prototype.checkPages = function(){ 
  17. if (isNaN(parseInt(this.page))) this.page = 1;
  18. if (isNaN(parseInt(this.pageCount))) this.pageCount = 1;
  19. if (this.page < 1) this.page = 1;
  20. if (this.pageCount < 1) this.pageCount = 1;
  21. if (this.page > this.pageCount) this.page = this.pageCount;
  22. this.page = parseInt(this.page);
  23. this.pageCount = parseInt(this.pageCount);
  24. }
  25. showPages.prototype.createHtml = function(mode){ 
  26. var strHtml = '', prevPage = this.page - 1, nextPage = this.page + 1,nextbigPage = this.page + 5,prevbigPage = this.page - 5;
  27. if (mode == '' || typeof(mode) == 'undefined') mode = 0;
  28. switch (mode) {
  29. case 2 : 
  30. strHtml += '<span class="pinfos">共 ' + this.totalput + ' 条记录  ';
  31. strHtml += '' + this.MaxPerPage + ' 条记录/页</span>';
  32. strHtml += '<span class="number">';
  33. strHtml += '<span class="nones">页次: ' + this.page + ' / ' + this.pageCount + '</span>';
  34. if (prevPage < 1) {
  35. strHtml += '<span title="第一页" class="nones">&#171;</span>';
  36. strHtml += '<span title="上五页" class="nones">&#139;</span>';
  37. } else {
  38. strHtml += '<span title="第一页"><a href="javascript:' + this.name + '.toPage(1);">&#171;</a></span>';
  39. strHtml += '<span title="上五页"><a href="javascript:' + this.name + '.toPage(' + prevbigPage + ');">&#139;</a></span>';
  40. }
  41. //if (this.page != 1) strHtml += '<span title="第 1 页"><a href="javascript:' + this.name + '.toPage(1);">1</a></span>';
  42. //if (this.page >= 5) strHtml += '<span class="lines">...</span>';
  43. if (this.pageCount > this.page + 2) {
  44. var endPage = this.page + 2;
  45. } else {
  46. var endPage = this.pageCount;
  47. }
  48. for (var i = this.page - 2; i <= endPage; i++) {
  49. if (i > 0) {
  50. if (i == this.page) {
  51. strHtml += '<span title="当前第 ' + i + ' 页" class="trues">' + i + '</span>';
  52. } else {
  53. if ( i != this.pageCount) {
  54. strHtml += '<span title="第 ' + i + ' 页"><a href="javascript:' + this.name + '.toPage(' + i + ');">' + i + '</a></span>';
  55. }
  56. }
  57. }
  58. }
  59. //if (this.page + 5 < this.pageCount) strHtml += '<span class="lines"></span>';
  60. //if (this.page != this.pageCount) strHtml += '<span title="第 ' + this.pageCount + ' 页"><a href="javascript:' + this.name + '.toPage(' + this.pageCount + ');">' + this.pageCount + '</a></span>';
  61. if (nextPage > this.pageCount) {
  62. strHtml += '<span title="下五页" class="nones">&#155;</span>';
  63. strHtml += '<span title="最后一页" class="nones">&#187;</span>';
  64. } else {
  65. strHtml += '<span title="下五页"><a href="javascript:' + this.name + '.toPage(' + nextbigPage + ');">&#155;</a></span>';
  66. strHtml += '<span title="最后一页"><a href="javascript:' + this.name + '.toPage(' + this.pageCount + ');">&#187;</a></span>';
  67. }
  68. strHtml += '</span><br>';
  69. break;
  70. }
  71. return strHtml;
  72. }
  73. showPages.prototype.createUrl = function (page) { //生成页面跳转url
  74. if (isNaN(parseInt(page))) page = 1;
  75. if (page < 1) page = 1;
  76. if (page > this.pageCount) page = this.pageCount;
  77. var url = location.protocol + '//' + location.host + location.pathname;
  78. var args = location.search;
  79. var reg = new RegExp('([?&]?)' + this.argName + '=[^&]*[&$]?', 'gi');
  80. args = args.replace(reg,'$1');
  81. if (args == '' || args == null) {
  82. args += '?' + this.argName + '=' + page;
  83. } else if (args.substr(args.length - 1,1) == '?' || args.substr(args.length - 1,1) == '&') {
  84. args += this.argName + '=' + page;
  85. } else {
  86. args += '&' + this.argName + '=' + page;
  87. }
  88. return url + args;
  89. }
  90. showPages.prototype.toPage = function(page){ //页面跳转
  91. var turnTo = 1;
  92. if (typeof(page) == 'object') {
  93. turnTo = page.options[page.selectedIndex].value;
  94. } else {
  95. turnTo = page;
  96. }
  97. self.location.href = this.createUrl(turnTo);
  98. }
  99. showPages.prototype.printHtml = function(mode){ 
  100. this.getPage();
  101. this.checkPages();
  102. this.showTimes += 1;
  103. document.write('<div id="pages_' + this.name + '_' + this.showTimes + '" class="pages"></div>');
  104. document.getElementById('pages_' + this.name + '_' + this.showTimes).innerHTML = this.createHtml(mode);
  105. }
  106. showPages.prototype.formatInputPage = function(e){ 
  107. var ie = navigator.appName=="Microsoft Internet Explorer"?true:false;
  108. if(!ie) var key = e.which;
  109. else var key = event.keyCode;
  110. if (key == 8 || key == 46 || (key >= 48 && key <= 57)) return true;
  111. return false;
  112. }