스마트웹앱콘텐츠전문가/자바스크립트

a(asynchronous)jax 응답결과(success, error, complete)

9D4U 2019. 6. 28. 12:08
728x90
반응형
<script>
/*ajax 기본 형식*/
$.ajax({
	type : 'POST',
    url : 'url주소',
    data : 데이터,
    error : function(error){
    	alert("error");
    },
    success : function(data){
    	alert("success");
    },
    complete : function(){
    	alert("complete");
    }
});
</script>

 

728x90