// 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=<%=request.getParameter("t1") %>
t2=<%=request.getParameter("t2") %>
카테고리 없음