From 852c2bcb25860f5f1a26a4c3c2d8d1bc0365390f Mon Sep 17 00:00:00 2001 From: JSYOO Date: Mon, 1 Nov 2021 15:14:45 +0900 Subject: [PATCH] =?UTF-8?q?pageload=ED=95=A8=EC=88=98=20function=EB=AA=85?= =?UTF-8?q?=20=ED=8C=8C=EB=9D=BC=EB=AF=B8=ED=84=B0=EB=A1=9C=20=EB=B0=9B?= =?UTF-8?q?=EA=B2=8C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/js/nlib.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/webapp/js/nlib.js b/src/main/webapp/js/nlib.js index c7c3a7cf..47c3a1ee 100644 --- a/src/main/webapp/js/nlib.js +++ b/src/main/webapp/js/nlib.js @@ -242,7 +242,7 @@ function insertInterest(masterId){ }); } -function pageLoad(pageIndex, totRecordCount, startPage, endPage, lastPage) +function pageLoad(fnName,pageIndex, totRecordCount, startPage, endPage, lastPage) { $("#paging *").remove(); @@ -251,8 +251,8 @@ function pageLoad(pageIndex, totRecordCount, startPage, endPage, lastPage) { if(pageIndex != 1 ){ - html+="
  • 처음으로
  • " - html+="
  • 이전
  • "; + html+="
  • 처음으로
  • " + html+="
  • 이전
  • "; }else{ html+="
  • 처음으로
  • " html+="
  • 이전
  • "; @@ -262,15 +262,15 @@ function pageLoad(pageIndex, totRecordCount, startPage, endPage, lastPage) { if(startPage != pageIndex) { - html+= "
  • " + startPage + "
  • " + html+= "
  • " + startPage + "
  • " }else{ html+= "
  • "+ startPage +"
  • " } } if(pageIndex != lastPage){ - html+="
  • 다음
  • " - html+="
  • 맨끝으로
  • "; + html+="
  • 다음
  • " + html+="
  • 맨끝으로
  • "; }else{ html+="
  • 다음
  • " html+="
  • 맨끝으로
  • ";