• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>jQuery Element Selection</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
                // <img>요소 중에서 alt 속성값이 "flower"인 요소를 모두 선택함.
12
                $("img[alt='flower']").attr("src", "/examples/images/img_monalisa.png");
13
            });
14
        });
15
    </script>
16
</head>
17
​
18
<body>
19
​
20
    <h1>속성 선택자</h1>
21
​
22
    <img src="/examples/images/img_flower.png" alt="flower"><br>
23
    <button>속성을 바꾸죠!!</button>
24
    
25
</body>
26
​
27
</html>