﻿// JScript 文件

function showPages(name) { //初始化屬性
    this.name = name;      //對像名稱
    this.recordCount = 1;  //總記錄數
    this.page = 1;         //當前頁數
    this.pageCount = 1;    //總頁數
    this.argName = 'page'; //參數名
    this.showTimes = 1;    //打印次數
}

showPages.prototype.getPage = function(){ //叢url獲得當前頁數,如果變量重複只獲取最後一個
    var args = location.search;
    var reg = new RegExp('[\?&]?' + this.argName + '=([^&]*)[&$]?', 'gi');
    var chk = args.match(reg);
    this.page = RegExp.$1;
}
showPages.prototype.checkPages = function(){ //進行當前頁數和總頁數的驗證
    if (isNaN(parseInt(this.page))) this.page = 1;
    if (isNaN(parseInt(this.pageCount))) this.pageCount = 1;
    if (this.page < 1) this.page = 1;
    if (this.pageCount < 1) this.pageCount = 1;
    if (this.page > this.pageCount) this.page = this.pageCount;
    this.page = parseInt(this.page);
    this.pageCount = parseInt(this.pageCount);
}
showPages.prototype.createHtml = function(){ //生成html代碼
    var strHtml = '', prevPage = this.page - 1, nextPage = this.page + 1;
            strHtml += '<span class="total">Total: ' + this.recordCount + '.</span> ';
            strHtml += '<span class="count">Pages: ' + this.page + ' / ' + this.pageCount + '</span>';
            strHtml += '<span class="number">';
            if (prevPage < 1) {
                strHtml += '<span title="首頁">&#171;</span>';
                strHtml += '<span title="前一頁">&#139;</span>';
            } else {
                strHtml += '<span title="首頁"><a href="javascript:' + this.name + '.toPage(1);">&#171;</a></span>';
                strHtml += '<span title="前一頁"><a href="javascript:' + this.name + '.toPage(' + prevPage + ');">&#139;</a></span>';
            }
            if (this.page % 10 ==0) {
                var startPage = this.page - 9;
            } else {
                var startPage = this.page - this.page % 10 + 1;
            }
            if (startPage > 10) strHtml += '<span title="前十頁"><a href="javascript:' + this.name + '.toPage(' + (startPage - 1) + ');">...</a></span>';
            for (var i = startPage; i < startPage + 10; i++) {
                if (i > this.pageCount) break;
                if (i == this.page) {
                    strHtml += '<span title="第' + i + '頁">' + i + '</span>';
                } else {
                    strHtml += '<span title="第' + i + '頁"><a href="javascript:' + this.name + '.toPage(' + i + ');">' + i + '</a></span>';
                }
            }
            if (this.pageCount >= startPage + 10) strHtml += '<span title="後10頁"><a href="javascript:' + this.name + '.toPage(' + (startPage + 10) + ');">...</a></span>';
            if (nextPage > this.pageCount) {
                strHtml += '<span title="下一頁">&#155;</span>';
                strHtml += '<span title="上一頁">&#187;</span>';
            } else {
                strHtml += '<span title="下一頁"><a href="javascript:' + this.name + '.toPage(' + nextPage + ');">&#155;</a></span>';
                strHtml += '<span title="最後一頁"><a href="javascript:' + this.name + '.toPage(' + this.pageCount + ');">&#187;</a></span>';
            }
            strHtml += '</span><br />';
    return strHtml;
}
showPages.prototype.createUrl = function (page) { //生成頁面跳轉url
    if (isNaN(parseInt(page))) page = 1;
    if (page < 1) page = 1;
    if (page > this.pageCount) page = this.pageCount;
    var url = location.protocol + '//' + location.host + location.pathname;
    var args = location.search;
    var reg = new RegExp('([\?&]?)' + this.argName + '=[^&]*[&$]?', 'gi');
    args = args.replace(reg,'$1');
    if (args == '' || args == null) {
        args += '?' + this.argName + '=' + page;
    } else if (args.substr(args.length - 1,1) == '?' || args.substr(args.length - 1,1) == '&') {
            args += this.argName + '=' + page;
    } else {
            args += '&' + this.argName + '=' + page;
    }
    return url + args;
}
showPages.prototype.toPage = function(page){ //頁面跳轉
    var turnTo = 1;
    if (typeof(page) == 'object') {
        turnTo = page.options[page.selectedIndex].value;
    } else {
        turnTo = page;
    }
    self.location.href = this.createUrl(turnTo);
}
showPages.prototype.printHtml = function(){ //顯示html代碼
    this.getPage();
    this.checkPages();
    this.showTimes += 1;
    document.write('<div id="pages_' + this.name + '_' + this.showTimes + '" class="pages"></div>');
    document.getElementById('pages_' + this.name + '_' + this.showTimes).innerHTML = this.createHtml();
    
}
showPages.prototype.formatInputPage = function(e){ //限定輸入頁數格式
    var ie = navigator.appName=="Microsoft Internet Explorer"?true:false;
    if(!ie) var key = e.which;
    else var key = event.keyCode;
    if (key == 8 || key == 46 || (key >= 48 && key <= 57)) return true;
    return false;
}