Ajax
// Main $("button").click(function () { $.ajax({ url:"NewFile.jsp", // 이동 type:"GET", // 방식 data:"t1=Hello&t2=Ajax", // 넘길 데이터 success:function(data, status, xhr){ alert("통신 성공"); $("#demo").html(data); }, error:function(xhr, status, error){ alert("통신 실패"); }, complete:function(xhr, status){ alert("통신 종료"); } }); }); // 불러오기 t1= t2=