<title>jQuery Element Insert</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
$("#firstBtn").on("click", function() {
$("#firstItem").appendTo("#list");
$("#secondBtn").on("click", function() {
$("#secondItem").appendTo("#list");
$("#thirdBtn").on("click", function() {
$("#thirdItem").appendTo("#list");
<p>아래 버튼들을 왼쪽에서부터 차례대로 눌러보세요!</p>
<li id="firstItem">첫 번째 아이템이에요!</li>
<li id="secondItem">두 번째 아이템이에요!</li>
<li id="thirdItem">세 번째 아이템이에요!</li>
<button id="firstBtn">첫 번째 아이템 추가</button>
<button id="secondBtn">두 번째 아이템 추가</button>
<button id="thirdBtn">세 번째 아이템 추가</button>