2020-12-12 09:53:35

jquery의 css 메서드를 사용하면 특정 요소에 css 속성을 추가할 수 있습니다. 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    
    <!--제이쿼리-->
    <script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
 
    <title>Document</title>
    <style>
        .title {
            color: red;
            font-size: 50px;
        }
 
    </style>
</head>
<body>
    <div class="title">
        bskyvision
    </div>
 
 
    <script>
        $('.title').click(function(){
            $('.title').css({"color""blue""font-size""20px"});
        });
    </script>
</body>
</html>
cs

 

위와 같이 코딩해주면 본래 color는 red, font-size는 50px 였던 title 클래스 요소는 클릭하면 color는 blue로, font-size는 20px로 바뀌게 됩니다.

 

 

바뀌었다기보다는 기존의 것보다 더 우선순위가 높다고 표현이 좀 더 정확하겠네요. ㅎㅎ 다음과 같이 css가 추가되면서 기존의 동일한 속성의 css들을 무효화 시키니까요.