ajax 동작 중 공통으로 처리 해야 하는 경우 아래의 소스를 공통 js에 추가 해줍니다.
//ajax시작
$(document).ajaxStart(function(){
});
//ajax종료
$(document).ajaxStop(function(){
});
//ajax완료
$(document).ajaxComplete(function(evnet, xhr, settings){
if(xhr.status=="404"){
}
if(xhr.status=="500"){
}
console.log(xhr.responseText);
});
반응형
'javascript' 카테고리의 다른 글
json 데이터 input 테그에 데이터 셋팅 및 input 태그 데이터 초기화 관련 javascript소스 (0) | 2021.07.02 |
---|---|
alert, confirm,loding,page block sweetalert2 이용하기 (0) | 2021.06.30 |
jsGrid to json 변환 (0) | 2021.06.02 |
jsgrid row edit (0) | 2021.06.01 |
event.stopPropagation(), event.preventDefault() 관련 정리 (0) | 2021.05.14 |