function sample(){ let post_url = '/url' ; $.ajax({ type: "POST", url: post_url, data : { "u_co" : $("").val(), }, async:false, success: function(response){ }, error : function(xhr, textStatus, errorThrown){ // Error시, 처리 alert(xhr); alert(textStatus); alert(errorThrown); } }); } 구분 속성 값 설명 기본 type 통신 타입을 설정합니다. (get, post) url 요청할 url을 설정합니다. data 서버에 요청할 때 보낼 매개변수를 설정합니다. dataType 응답 받을 데이터 타입..