$.fn.extend({ JPager: function (cfg, pageIndex, pageSize) { if (cfg && pageIndex > 0 && pageSize>0) { var token = "#" this.attr("id"); this.empty(); var pageFirst = function () { $(token).JPager(cfg, 1, pageSize); };
var pagePre = function () { $(token).JPager(cfg, pageIndex - 1, pageSize); };
var pageLast = function () { $(token).JPager(cfg,parseInt($("#_tot").val()), pageSize); };
var pageNext = function () { $(token).JPager(cfg, pageIndex 1, pageSize); };
var pageNumber = function () { $(token).JPager(cfg, parseInt($( this).text()), pageSize); };
var pageGo = function () { var index =parseInt($("#_pos").val()); var total =parseInt($("#_tot").val()); if (색인) { if (index > total) { $(to 켄).JPager( cfg, total, pageSize); } else if (index < 1) { $(token).JPager(cfg, 1, pageSize); } else { $(token).JPager(cfg, index, pageSize); } } }; var checkGoNumber = function () { if (!Number(this.value)) { this.value = ""; } else { this.value = 숫자(this.value); } }; var initCustomer = function (recordCount) { if (cfg.customer) { if (cfg.customer.template) { var t = cfg. customer.template; t = t.replace(/%total%/gi, Math.ceil(recordCount / pageSize)).replace(/%current%/gi, pageIndex).replace(/%recordCount%/gi, RecordCount).replace(/% pageSize%/gi, pageSize); if (cfg.customer.position == "right") { $("#_right").after(t); } 그 외 { $("#_left").before(t); } } } };
varchangeState = 함수(전체) { if (pageIndex == 1) { $("#_first").attr("class", "unable"); $("#_pre").attr("class", "unable" ); } else { $("#_first").bind("click", pageFirst).attr("class", "number"); $("# _pre ").bind("click", pagePre).attr("class", "number"); } if (pageIndex == total) { $("#_last").attr ("클래스", "불가능"); $("#_next").attr("클래스", "불가능"); } else { $("#_ 마지막" ).bind("click", pageLast).attr("class", "number"); $("#_next").bind("click", pageNext).attr("class", "number" "); } }; var initNumber = 함수(전체, 개수, 현재) { if (전체 > 0 && 개수 > 0) { if (현재 < 1) { 현재 = 1; } if (현재 > 전체) { 현재 = 합계; } var endIndex = total; var startIndex = 1; var temp = 현재 Math.floor(개수 / 2); if (temp < ; 총) { if (temp < ; 개수) { endIndex = 개수; } 그 외 { startIndex = 임시 - 개수 1; endIndex = temp; } el 그래요 { if (총합 > 개수) { startIndex = 총 - 개수 1; } } $("#_number").empty(); for (var i = startIndex; i <= endIndex; i ) { var html = $("").text(i).bind("click", pageNumber); if (i == 현재) { $("#_number").append(html.attr("class", "selected")); } 그밖에 { $( "#_number").append(html.attr("class", "number")); } } } };
var initPager = function (data) { if ($.isArray(data.SearchResult) && data.RecordCount > 0) { $(token).append("< 스팬 id='_left'>首页上一页 범위>< 입력 id='_to' type='button' value='GO'/>下一页末页 "); var total = Math.ceil(data.RecordCount / pageSize); $("#_tot").val(total); $("#_pos").bind(" Blur", checkGoNumber); $("#_to").bind("click", pageGo);