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

<script>
/*ajax 기본 형식*/
$.ajax({
type : 'POST',
    url : 'url주소',
    data : 데이터,
    error : function(error){
    alert("error");
    },
    success : function(data){
    alert("success");
    },
    complete : function(){
    alert("complete");
    }
});
</script>

댓글