$.ajax({
type : "POST",
url : url,
data : data,
dataType: "json",
contentType: "application/x-www-form-urlencoded; charset=utf-8",
success : function(data) {
console.log(data);
},
complete : function(data) {
console.log(data);
},
error : function(xhr, status, error) {
console.log("에러발생 : " + error);
}
});
jQuery에서 ajax통신할때 기본 문법..
옵션에 대한 설명은 나중에..
언제가 될지는 모름..나도 모름..
아무튼 기본문법..
'JQuery' 카테고리의 다른 글
jQuery ajax 통신시 412 Precondition Failed. (0) | 2015.03.05 |
---|---|
jQuery의 getJSON의 문제점..함정?? (0) | 2015.02.26 |
부모 태그를 찾아 지우기. (0) | 2015.01.21 |
CheckBox 전체 선택 해제.. (0) | 2014.11.18 |
jQuery로 Ajax통신후 가져온 리스트나 배열 다루기. (0) | 2014.10.30 |