• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>jQuery Element Insert</title>
7
    <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
8
    <script>
9
        $(function() {
10
            $("button").on("click", function() {
11
                $("#list").append("<li>새로 추가된 아이템이에요!</li>");
12
            });
13
        });
14
    </script>
15
</head>
16
​
17
<body>
18
​
19
    <h1>.append() 메소드</h1>
20
    <ul id="list">
21
        <li>첫 번째 아이템이에요!</li>
22
        <li>두 번째 아이템이에요!</li>
23
        <li>세 번째 아이템이에요!</li>
24
    </ul>
25
    <button>아이템 추가</button>
26
    
27
</body>
28
​
29
</html>