자바스크립트 (JavaScript) ajax form, 에이작스 폼
$.ajax ({ url : "url", type : "GET", async : true, cache : true, timeout : 3000, data : {key : value}, processData : true, contentType : "application/json", dataType : "json", beforeSend : function () { }, success : function(data, status, xhr) { }, error : function(xhr, textStatus, errorThrown){ alert("에러 발생 \n" + textStatus + " : " + errorThrown); self.close(); }, complete : function(xhr, statu..