jQuery Ajax 지원 함수
$(selector).load(url,data,callback)
$.ajax(options)
$.get(url,data,callback,type)
$.post(url,data,callback,type)
$.getJSON(url,data,callback)
$.getScript(url,callback)
파라미터 url 은 Ajax 요청을 할 문서의 url 주소이고, data는 키/값으로 구성된 파라미터, callback은 모든 작업이 끝난 후 실행할 함수이다. type은 문서 타입을 지정하며 html, xml, json, script, text 의 값을 지정할 수 있다.
예제
function test(area, url) {
$(area).load(url);
}
<div id="test"> ... </div>
<button id="b01" type="button" onclick="test('#test','test1.txt')" > Click me </button>
'Java Script & DOM > jQuery' 카테고리의 다른 글
jQuery를 사용하여 팝업 배경에 뿌연 효과를 부여한 레이어 팝업 (0) | 2011.02.22 |
---|---|
jQuery로 CSS 다루기 (0) | 2010.04.08 |
jQuery로 HTML 문서 수정하기 (0) | 2010.04.07 |
jQuery 이벤트와 효과 (0) | 2010.04.07 |
jQuery 액션(함수) (0) | 2010.04.07 |