728x90
반응형
1st ajax success부분에 2nd ajax 로직을 넣어라.
function ajaxModule(DATA,Url,Fn){
$.ajax({
type:"POST", //POST GET
url:Url, //PAGEURL
data : DATA,
timeout : 30000, //제한시간 지정
cache : false, //true, false
success: function whenSuccess(arg){ //SUCCESS FUNCTION
Fn(arg);
},
error: function whenError(x,e){ //ERROR FUNCTION
ajaxErrorAlert(x,e);
}
});
}
$.ajax({
type:"POST", //POST GET
url:Url, //PAGEURL
data : DATA,
timeout : 30000, //제한시간 지정
cache : false, //true, false
success: function whenSuccess(arg){ //SUCCESS FUNCTION
Fn(arg);
},
error: function whenError(x,e){ //ERROR FUNCTION
ajaxErrorAlert(x,e);
}
});
}
728x90
728x90
BIG
'Programming > Web' 카테고리의 다른 글
a:visited 스타일 적용 안될 때 (0) | 2014.06.11 |
---|---|
이클립스 jquery validator 에러 (0) | 2014.05.27 |
web css 특정 클래스만 제외 시키기 (0) | 2014.04.09 |
input, select, button 등에 disable css로 설정하기 (0) | 2014.04.09 |
특정한 시간에 화면 refresh (0) | 2014.03.25 |
댓글