목차$.get()$.post() $().load() $.get() jQuery AJAX get() and post() Methods (w3schools.com) 1 def: 서버에서 get방식(url)으로 데이터 요청 2 syntax : $.get(URL,callback); //URL: 요청 URL(web address). callback(option): load 후 실행 함수. 3 example:demo_test.asp:response.write("This is some text from an external ASP file.")%>Send an HTTP GET request to a page and get the result back 4 result: $.post() jQuery AJA..