$.ajax({ 에서 html 값을 밖으로 뺄려구 합니다 정보
$.ajax({ 에서 html 값을 밖으로 뺄려구 합니다본문
<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>
이런식으로 짜봣는데 notification_ajax_result 가 정의되는게 if(!notification_ajax_result) 보다 늦어서 그런지 notification_page값을 원래대로 돌려버리네요 ;
기능은 받아온 html가 잇으면 새로 갱신하고 html가 없으면 올렷던 페이지번호를 다시 내리는..
댓글 전체
                    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>
이렇게 해결봣습니다 ^^;
            
            
            
                        
            
                    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>
이렇게 해결봣습니다 ^^;
