$.ajax({ 에서 html 값을 밖으로 뺄려구 합니다
[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가 없으면 올렷던 페이지번호를 다시 내리는..
<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개
새로운나라
14년 전
18 32 42 라인이 별 의미 없는것 같군요
14년 전
<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>
이렇게 해결봣습니다 ^^;
게시글 목록
| 번호 | 제목 |
|---|---|
| 283882 | |
| 283880 | |
| 283874 | |
| 283871 | |
| 283863 | |
| 283856 | |
| 283852 | |
| 283848 | |
| 283847 | |
| 283844 | |
| 283843 | |
| 283839 | |
| 283835 | |
| 283826 | |
| 283821 | |
| 283818 | |
| 283817 | |
| 283816 | |
| 283814 | |
| 283811 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기