½ÃÀÛÆäÀÌÁö·Î Áñ°Üã±âÃß°¡
·Î±×ÀÎ
ȸ¿ø°¡ÀÔ l Ã⼮üũ l ¸¶ÀÌÆäÀÌÁö l CGIMALL
happycgi
ÀÚ·á½Ç »çÀÌÆ®µî·Ï ·©Å·100 ÇÁ·Î±×·¥¸®ºä °ü¸®ÀÚÃßõÀÚ·á Ãʺ¸°¡À̵å
Ä¿¹Â´ÏƼ
Àüü ÆîÃ帱â
Äü¸Þ´º¸µÅ© jquery , CSS , PHP , Javascript , ¹«·áÆùÆ® , ASP
»ó¼¼°Ë»ö
Ȩ > JAVASCRIPT > javascript ¼Ò½ºÃ¢°í > AJAX > Ajax Pagination Script (ÆäÀÌÁö¹øÈ£ Ç¥½Ã) »ó¼¼Á¤º¸
»çÀÌÆ®µî·Ï
Ŭ¶ó¿ìµåű×
Javascript
PHP
html
asp
mysql
CSS
mobile
jquery
image
slide
�޴�
������Ʈ
¸Þ´º
ÇöÀçÁ¢¼ÓÀÚ ¸í »õ·Î°íħ
Ajax Pagination Script (ÆäÀÌÁö¹øÈ£ Ç¥½Ã)
¼Ò½ºÅë°èÁ¤º¸ ¿À·ù½Å°í ¹× ¹®ÀÇ
ÇØÇÇÆÀ
³×ƼÁð
Æ®À§ÅÍ·Î º¸³»±â ÆäÀ̽ººÏÀ¸·Î º¸³»±â
¼Ò½ººÐ·ù AJAX
´Ù¿î·Îµå Ƚ¼ö 973 ȸ
°£´Ü¼³¸í HTML¹®¼­ ¼ýÀÚ¸¸Å­ ÆäÀÌÁö ¹øÈ£¸¦ Ç¥½ÃÇØÁÖ´Â Ajax ½ºÅ©¸³Æ®ÀÔ´Ï´Ù.
Æò°¡Çϱâ ÈǸ¢ÇÔ ¸Å¿ìÁÁÀ½ ÁÁÀ½ ±¦ÂúÀ½ º¸Åë º°·Î
ȨÆäÀÌÁö¹Ù·Î°¡±â ¼Ò½º´Ù¿î·Îµå µ¥¸ð ¹Ì¸®º¸±â ½ºÅ©·¦Çϱâ

[ HTML ]

<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Dynamic Drive DHTML Scripts- Ajax Pagination script</title>
<link rel="stylesheet" type="text/css" href="ajaxpagination.css" />

<script src="ajaxpagination.js" type="text/javascript">

/***********************************************
* Ajax Pagination script- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

</script>
</head>

<body>

<p><b>Documentation:</b> <a href="http://www.dynamicdrive.com/dynamicindex17/ajaxpaginate/">http://www.dynamicdrive.com/dynamicindex17/ajaxpaginate/</a></p>
<br />

<a href="javascript:mypages.refresh(myajaxbook)">Load Flowers Data Set (default)</a> | <a href="javascript:mypages.refresh(myajaxbookalt)">Load Animals Data Set</a>

<div id="paginate-top"> </div> <!-- »ó´Ü ÆäÀÌÁö ¹øÈ£ Ç¥½ÃºÎºÐ-->
<div id="pcontent"> </div> <!-- º»¹®³»¿ë Ç¥½ÃºÎºÐ -->
<div id="paginate-bottom"> </div> <!-- ÇÏ´Ü ÆäÀÌÁö ¹øÈ£ Ç¥½ÃºÎºÐ-->

<script type="text/javascript">

var myajaxbook={} //arbitrary variable to hold page settings for this book
myajaxbook.page=["demofiles/flower.htm", "demofiles/flower2.htm", "demofiles/flower3.htm", "demofiles/flower4.htm"] 
// ºÒ·¯µé¿©Áö´Â HTML¹®¼­ (¹è¿­ÇüÅ : ¿øÇϽô ¸¸Å­ Ãß°¡ÇÏ¸é µÊ)
myajaxbook.selectedpage=0 //set page shown by default (0=1st page)

var myajaxbookalt={} //arbitrary variable to hold page settings for another book
myajaxbookalt.page=["demofiles/external.htm", "demofiles/external2.htm", "demofiles/external3.htm"] 
// ºÒ·¯µé¿©Áö´Â HTML¹®¼­ (¹è¿­ÇüÅ : ¿øÇϽô ¸¸Å­ Ãß°¡ÇÏ¸é µÊ)
myajaxbookalt.selectedpage=0 //set page shown by default (0=1st page)

var mypages=new ajaxpageclass.bindpages(myajaxbook, "pcontent", ["paginate-top", "paginate-bottom"])

</script>


</body>

</html>

 

[ JS : ajaxpagination.js ]

var ajaxpageclass=new Object()
//1) HTML to show while requested page is being fetched:
ajaxpageclass.loadstatustext="<img src='loading.gif' /> Requesting content..."

//2) Bust cache when fetching pages?
ajaxpageclass.ajaxbustcache=false

ajaxpageclass.connect=function(pageurl, divId){
 var page_request = false
 var bustcacheparameter=""
 if (window.XMLHttpRequest) // if Mozilla, IE7, Safari etc
  page_request = new XMLHttpRequest()
 else if (window.ActiveXObject){ // if IE6 or below
  try {
  page_request = new ActiveXObject("Msxml2.XMLHTTP")
  }
  catch (e){
   try{
   page_request = new ActiveXObject("Microsoft.XMLHTTP")
   }
   catch (e){}
  }
 }
 else
  return false
 page_request.onreadystatechange=function(){ajaxpageclass.loadpage(page_request, divId)}
 if (this.ajaxbustcache) //if bust caching of external page
  bustcacheparameter=(pageurl.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
 page_request.open('GET', pageurl+bustcacheparameter, true)
 page_request.send(null)
}

ajaxpageclass.loadpage=function(page_request, divId){
 document.getElementById(divId).innerHTML=this.loadstatustext //Display "fetching page message"
 if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)){
  document.getElementById(divId).innerHTML=page_request.responseText
 }
}

ajaxpageclass.bindpages=function(pageinfo, divId, paginateIds){ //Main Constructor function
 this.pageinfo=pageinfo //store object containing URLs of pages to fetch, selected page number etc
 this.divId=divId
 this.paginateIds=paginateIds //array of ids corresponding to the pagination DIVs defined for this pageinstance
 var initialpage=(pageinfo.selectedpage<pageinfo.page.length)? pageinfo.selectedpage : 0 //set initial page shown
 this.buildpagination(initialpage)
 this.selectpage(initialpage)
}

ajaxpageclass.bindpages.prototype={

 buildpagination:function(selectedpage){
  if (this.pageinfo.page.length==1)
   var paginateHTML="Page 1 of 1" //Pagination HTML to show when there's only 1 page (no pagination needed)
  else{ //construct pagimation interface
   var paginateHTML='<div class="pagination"><ul>\n'
   paginateHTML+='<li><a href="#previous" rel="'+(selectedpage-1)+'"></a></li>\n'
   for (var i=0; i<this.pageinfo.page.length; i++){
    paginateHTML+='<li><a href="#page'+(i+1)+'" rel="'+i+'">'+(i+1)+'</a></li>\n'
   }
   paginateHTML+='<li><a href="#next" rel="'+(selectedpage+1)+'">next </a></li>\n'
   paginateHTML+='</ul></div>'
  }// end construction
  for (var i=0; i<this.paginateIds.length; i++){ //loop through # of pagination DIVs specified
   var paginatediv=document.getElementById(this.paginateIds[i]) //reference pagination DIV
   paginatediv._currentpage=selectedpage //remember current page selected (which will become previous page selected after each page turn)
   paginatediv.innerHTML=paginateHTML
   var pageinstance=this
   paginatediv.onclick=function(e){
    var targetobj=window.event? window.event.srcElement : e.target
    if (targetobj.tagName=="A" && targetobj.getAttribute("rel")!=""){
     if (!/disabled/i.test(targetobj.className)){ //if this pagination link isn't disabled (CSS classname "disabled")
      pageinstance.selectpage(parseInt(targetobj.getAttribute("rel")))
     }
    }
    return false
   }
  }
 },

 selectpage:function(selectedpage){
  //replace URL's root domain with dynamic root domain (with or without "www"), for ajax security sake:
  var modifiedurl=this.pageinfo.page[selectedpage].replace(/^http:\/\/[^\/]+\//i, "http://"+window.location.hostname+"/")
  ajaxpageclass.connect(modifiedurl, this.divId) //fetch requested page and display it inside DIV
  if (this.pageinfo.page.length==1) //if this book only containe 1 page
   return
  var prevlinkoffset=1
  for (var i=0; i<this.paginateIds.length; i++){ //loop through # of pagination DIVs specified
   var paginatediv=document.getElementById(this.paginateIds[i])
   var paginatelinks=paginatediv.getElementsByTagName("a")
   paginatelinks[0].className=(selectedpage==0)? "prevnext disabled" : "prevnext" //if current page is 1st page, disable "prev" button
   paginatelinks[0].setAttribute("rel", selectedpage-1) //update rel attr of "prev" button with page # to go to when clicked on
   paginatelinks[paginatelinks.length-1].className=(selectedpage==this.pageinfo.page.length-1)? "prevnext disabled" : "prevnext"
   paginatelinks[paginatelinks.length-1].setAttribute("rel", selectedpage+1)
   paginatelinks[paginatediv._currentpage+prevlinkoffset].className="" //deselect last clicked on pagination link (previous)
   paginatelinks[selectedpage+prevlinkoffset].className="currentpage" //select current pagination link
   paginatediv._currentpage=selectedpage //Update last clicked on link
  }
 },

 refresh:function(pageinfo){
 this.pageinfo=pageinfo
 var initialpage=(pageinfo.selectedpage<pageinfo.page.length)? pageinfo.selectedpage : 0
 this.buildpagination(initialpage)
 this.selectpage(initialpage)
 }
}


³×ƼÁð ÀÇ°ß   ÀÌ¿ëÇϽŠÀÚ·áÀÇ Èı⸦ ÀÚÀ¯·Ó°Ô ÀÛ¼ºÇϼ¼¿ä. (»ó¾÷ÀûÀÎ ±¤°í ¹× µµ¹è¼º ±Û µîÀº »çÀüÅ뺸¾øÀÌ »èÁ¦µÉ ¼ö ÀÖ½À´Ï´Ù.)
³»¿ë ¾ÆÀ̵ð ÀÇ°ß³²±â±â
µî·ÏµÈ ÀÇ°ßÀÌ ¾ø½À´Ï´Ù.
1
À̸§
³»¿ë
:³×¸Â¾Æ¿ä: :È­³ª´Â±º¿ä: :Àá¿Í: :¿ì¿ïÇØ: :À̰ǾƳÄ: :¿ÕÇÏÇÏ: ¿Õ¿ôÀ½~ ³î·¥~
Æò°¡Çϱâ ÈǸ¢ÇÔ ¸Å¿ìÁÁÀ½ ÁÁÀ½ ±¦ÂúÀ½ º¸Åë º°·Î
µµ¹è¹æÁöÅ°
 18242558 º¸ÀÌ´Â µµ¹è¹æÁöÅ°¸¦ ÀÔ·ÂÇϼ¼¿ä.