Ajax Template

Ajax Template


1
2
3
4
5
6
7
8
9
10
11
12
13
14
$.ajax({
type : "POST",
url : "uafReserveCreateUser.do",
dataType : "json",
cache : false,
data : $("#apopForm").serialize(),
success : function(msg) {
if(msg.isSucess == "true"){
}
},
error : function() {
alert("에러가 발생하였습니다. 관리자에게 문의하여 주세요");
}
});
Share