<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript" src="../jquery-1.7.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
//#source -> #target
$("#appendBtn").click(function(){
//$("#target").append($("#source"));
$("#source").appendTo("#target");//위에 append와 같은 효과
});
$("#prependBtn").bind("click",function(){
//$("#target").prepend($("#source"));
$("#source").prependTo("#target");
});
$("#newBtn").bind("click",function(){
var newNode = $("<br><b>안녕하세요</b><font size='2' color='red'>반가워요</font>");
$("#source").append(newNode);//계속 추가할 경우는 이것을 쓰고 조회된 내용을 새로 하나만 보여줄때는 html()을 사용한다.
//$("#source").html("<br><b>안녕하세요</b><font size='2' color='red'>반가워요</font>");
});
$("#emptyBtn").bind("click",function(){
$("#source").empty();//id가 source인 자식노드를 지워라
//$("#source").remove();//id가 source인 자체를 자워라(div가 사라진다.)
});
});
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<fieldset>
<legend>소스</legend>
<div id="source">안녕하세요...출발지의 텍스트입니다.</div>
</fieldset>
<fieldset>
<legend>타겟</legend>
<div id="target">여기는 목적지 입니다.</div>
</fieldset>
<button id="appendBtn">append</button>
<button id="prependBtn">prepend</button>
<button id="newBtn">새로운 노드 추가</button>
<button id="emptyBtn">자식 노드 삭제</button>
</body>
</html>