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+="
  • 맨끝으로
  • ";