"JQuery $.ajax()"의 두 판 사이의 차이

잔글 (Jmnote 사용자가 $.ajax() 문서를 JQuery ajax() 문서로 옮겼습니다)
14번째 줄: 14번째 줄:


==같이 보기==
==같이 보기==
*[[jQuery get()]]
*[[jQuery post()]]
*[[jQuery 웹페이지 읽기]]
*[[jQuery 웹페이지 읽기]]
*[[AJAX]]
*[[AJAX]]

2015년 7월 29일 (수) 11:14 판

1 개요

jQuery.ajax()
$.ajax()
  • 비동기 HTTP 요청 수행
$.ajax({
  url: "test.html",
  context: document.body
}).done(function() {
  $( this ).addClass( "done" );
});

2 같이 보기

3 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}