$.ajax({ 에서 html 값을 밖으로 뺄려구 합니다

· 2011-09-09 (금) 13:20:03 · 2173 · 2
[code]
<script type="text/javascript">
var notification_ajax_result = 0;
function reloade()
{
notification_ajax_result = 0;
$.ajax({
type: "GET",
url: "<?=$g4[path]?>/notification/notification_function.php",
data: "page="+notification_page,
cache: false,
success: function(html) {
reloade_success(html);
}
});
}

function reloade_success(html) {
notification_ajax_result = 0;
if(html) {
notification_ajax_result = 1;
$("#notification_view").html(html);
} else
notification_ajax_result = 0;
}

function notification_next()
{
notification_page += 1;
reloade();
if(!notification_ajax_result)
notification_page -= 1;
notification_ajax_result = 0;

}

function notification_back()
{
notification_page -= 1;
reloade();
if(!notification_ajax_result)
notification_page += 1;
notification_ajax_result = 0;
}
</script>
[/code]

이런식으로 짜봣는데 notification_ajax_result 가 정의되는게 if(!notification_ajax_result) 보다 늦어서 그런지 notification_page값을 원래대로 돌려버리네요 ;
기능은 받아온 html가 잇으면 새로 갱신하고 html가 없으면 올렷던 페이지번호를 다시 내리는..
|

댓글 2개

2011-09-09 (금) 13:30:55
18 32 42 라인이 별 의미 없는것 같군요
<script type="text/javascript">
function reloade(mode)
{
notification_page = notification_page+mode;
$.ajax({
type: "GET",
url: "<?=$g4[path]?>/notification/notification_function.php",
data: "page="+notification_page,
cache: false,
success: function(html) {
if(html)
$("#notification_view").html(html);
else
if(mode == -1)
notification_page += 1;
else if(mode == 1)
notification_page -= 1;
}
});
}
</script>
<span onclick="reloade(-1)" style='cursor:pointer'><</span><span>ㅁㅁㅁ</span><span onclick="reloade(1)"style='cursor:pointer'>></span>


이렇게 해결봣습니다 ^^;
댓글을 작성하시려면 로그인이 필요합니다.

그누4 질문답변

66,531건

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기 기존 게시물은 열람만 가능합니다.

+
제목 글쓴이 날짜 조회
11-09-10 조회 1,072
11-09-10 조회 983
11-09-10 조회 1,083
11-09-10 조회 1,739
11-09-10 조회 934
11-09-10 조회 2,670
11-09-10 조회 1,656
11-09-10 조회 1,664
11-09-10 조회 1,657
11-09-10 조회 2,358
11-09-09 조회 2,043
11-09-09 조회 1,059
11-09-09 조회 2,174
11-09-09 조회 1,663
11-09-09 조회 1,646
11-09-09 조회 1,676
11-09-09 조회 1,615
11-09-09 조회 1,188
11-09-09 조회 1,193
11-09-09 조회 1,634