$.ajax({
type : "POST"
, url : "/loginTry.do"
, dataType : "json"
, data : $("#form").serialize()
, timeout : 30000
, cache : false
, headers : { "cache-control": "no-cache","pragma": "no-cache" }
, success : function(data){
if(data != null){
...
}
}
, error : function (jqXHR) {
alert(jqXHR);
// console.log(jqXHR);
return;
}
});
댓글 없음 :
댓글 쓰기