• 코드:
​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
                $("<b>새로 추가된 콘텐츠에요!</b>").prependTo(".item");
12
            });
13
        });
14
    </script>
15
</head>
16
​
17
<body>
18
​
19
    <h1>.prependTo() 메소드</h1>
20
    <ul>
21
        <li class="item">첫 번째 아이템이에요!</li>
22
        <li class="item">두 번째 아이템이에요!</li>
23
        <li>세 번째 아이템이에요!</li>
24
    </ul>
25
    <button>콘텐츠 추가</button>
26
    
27
</body>
28
​
29
</html>