• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>jQuery Element Replace</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
                // class가 "item"인 각 요소를 id가 "firstItme"인 요소로 대체함.
12
                $("#firstItem").replaceAll(".item");
13
            });
14
        });
15
    </script>
16
</head>
17
​
18
<body>
19
​
20
    <h1>.replaceAll() 메소드</h1>
21
    <ul>
22
        <li class="item" id="firstItem">첫 번째 아이템이에요!</li>
23
        <li class="item" id="secondItem">두 번째 아이템이에요!</li>
24
        <li class="item" id="thirdItem">세 번째 아이템이에요!</li>
25
    </ul>
26
    <button>아이템 대체</button>
27
    
28
</body>
29
​
30
</html>