js
[jQuery] html() ์ append() ์ฐจ์ด
natrue
2021. 9. 15. 17:19
728x90
jQuery("#id").append(data); : ๊ธฐ์กด ๋ฐ์ดํฐ์ ๋ด์ฉ์ด ์ถ๊ฐ (์์ด๋๊ฒ) -> .remove() ํ์.
$("#qnaMenuBtn").on("click",function(){
$.ajax({
type : "GET",
url : "/qna_list.jsp",
dataType : "html",
success : function(result){
$(".content").append($(result).find(".qnaListDiv"));
}
});
});

jQuery("#id").html(data); : ์ด๊ธฐํํ๊ณ ์๋ก์ด ๋ด์ฉ์ด ๋ค์ด๊ฐ๋ค. -> .remove() ํ์์์
$("#qnaMenuBtn").on("click",function(){
$.ajax({
type : "GET",
url : "/qna_list.jsp",
dataType : "html",
success : function(result){
$(".content").html($(result).find(".qnaListDiv"));
}
});
});
