[jQuery] ajax method option
종류 설명 success ajax통신이 정상적으로 이루어지면 이벤트 헨들러 실행 success : function(result){ } error 통신에 문제가 발생했을 때 함수 실행 error:function(request,status,error){ } type 데이터를 전송할 방식 설정 type: "post", / type : "get", url 데이터를 전송할 페이지를 설정 url : "/url", data 서버로 전송할 데이터를 지정 data: data, timeout 응답대기시간 timeout : 5000, beforeSend ajax 요청하기전에 실행되는 함수 beforeSend: function() { } contentType 서버로 전송할 데이터의 content-type 설정 contentT..