■ Ajax로 html파일 받아오기
● jsp에서 html코드 작성하기
<h2>5. Ajax로 html파일 받아오기</h2>
<button id="htmlAjax">html 문서받기</button>
<div></div>
● script 코드 작성하기
<script>
$(function(){
$("#htmlAjax").click(function(){
$.ajax({
url : "jqHtmlTest.do",
type : "get",
dataType : "html",
success : function(data){
console.log(data);
$("#htmlAjax + div").html(data);
}
});
});
});
</script>
● jqHtmlTest.do servlet 코드 생성
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
request.setAttribute("errorMsg", "html데이터 응답받기");
request.getRequestDispatcher("views/errorPage.jsp").forward(request, response);
}
● 결과 확인
'AJAX' 카테고리의 다른 글
AJAX (8) Ajax를 이용한 파일 업로드 (0) | 2023.07.08 |
---|---|
AJAX (7) XML데이터 가져오기 (0) | 2023.07.08 |
AJAX (5) 응답데이터로 여러 개의 객체들이 담겨있는 ArrayList 받기 (0) | 2023.07.08 |
AJAX (4) 서버로 데이터 전송 후 조회된 객체를 응답데이터로 받기 (0) | 2023.07.08 |
AJAX (3) JQuery 방식 (0) | 2023.07.06 |