일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 서원힐스
- wp-900
- 잠실수영장
- 제주도설경
- 자연산 개복숭아
- 한라산
- 파주골프장
- 괌
- 괌자유여행
- 덕소골프샵
- 제주도눈
- 제주도
- 개복숭아판매
- 야생개복숭아
- 태안수영장펜션
- 돌복숭아
- 포천온천
- 포천가볼만한곳
- 휘닉스파크
- 포천수영장
- LGG6
- 개복숭아
- 자연산개복숭아
- 포천투어
- 야생개복숭아 판매
- 조경철천문대
- 개복숭아 판매
- 제주도눈썰매
- 경기북부골프장
- 충주골프장
- Today
- Total
Live Brilliant
jquery ajax load more 더보기 기능 본문
춮처: http://www.9lessons.info/2009/12/twitter-style-load-more-results-with.html
데모있음
테이블 생성
CREATE TABLE messages(msg_id INT AUTO_INCREMENT PRIMARY KEY,
message TEXT
);
스크립트
libs/jquery/1.3.0/jquery.min.js"></script>
<script type="text/javascript">
$(function()
{
$('.more').live("click",function()
{
var ID = $(this).attr("id");
if(ID)
{
$("#more"+ID).html('<img src="moreajax.gif" />');
$.ajax({
type: "POST",
url: "ajax_more.php",
data: "lastmsg="+ ID,
cache: false,
success: function(html){
$("ol#updates").append(html);
$("#more"+ID).remove(); // removing old more button
}
});
}
else
{
$(".morebox").html('The End');// no results
}
return false;
});
});
</script>
<ol class="timeline" id="updates">
##loadmore.php
<?php
include('config.php');
$sql=mysql_query("select * from messages ORDER BY msg_id DESC LIMIT 9");
while($row=mysql_fetch_array($sql))
{
$msg_id=$row['msg_id'];
$message=$row['message'];
?>
<li>
<?php echo $message; ?>
</li>
<?php } ?>
</ol>
//More Button here $msg_id values is a last message id value.
<div id="more<?php echo $msg_id; ?>" class="morebox">
<a href="#" class="more" id="<?php echo $msg_id; ?>">more</a>
</div>
</div>
##ajax_more.php
<?php
include("config.php");
if(isSet($_POST['lastmsg']))
{
$lastmsg=$_POST['lastmsg'];
$lastmsg=mysql_real_escape_string($lastmsg);
$result=mysql_query("select * from messages where msg_id<'$lastmsg' order by msg_id desc limit 9");
while($row=mysql_fetch_array($result))
{
$msg_id=$row['msg_id'];
$message=$row['message'];
?>
<li>
<?php echo $message; ?>
</li>
<?php
}
?>
//More Button here $msg_id values is a last message id value.
<div id="more<?php echo $msg_id; ?>" class="morebox">
<a href="#" id="<?php echo $msg_id; ?>" class="more">more</a>
</div>
<?php
}
?>
##style.css
*{ margin:0px; padding:0px }
ol.timeline
{
list-style:none
}
ol.timeline li
{
position:relative;
border-bottom:1px #dedede dashed;
padding:8px;
}
.morebox
{
font-weight:bold;
color:#333333;
text-align:center;
border:solid 1px #333333;
padding:8px;
margin-top:8px;
margin-bottom:8px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
}
.morebox a{ color:#333333; text-decoration:none}
.morebox a:hover{ color:#333333; text-decoration:none}
#container{margin-left:60px; width:580px }
'개발은 핵찜이야 > AJAX' 카테고리의 다른 글
crossdomain jsonp 사용 (0) | 2013.11.14 |
---|---|
ajax json 엔터값 로드 문제 (0) | 2012.12.17 |
ajax CDATA (0) | 2012.05.30 |