티스토리 뷰

1. 자식 선택자 - 역할

기본 선택자의 범위를 제한


좀 더 세부적인 문서객체를 선택하고자 하는 경우에 사용


2. 자식 선택자 - 예제코드

1. >가 포함되어 있는 경우


◈ 코드


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script src="https://code.jquery.com/jquery-1.11.3.js" type="text/javascript"></script>
 
<script>
$(document).ready(function () 
{
    $('div > *').css('color','blue');
});
</script>
 
<body>
    <div>
        <ul>
            <li>test목록1</li>
            <li>test목록2</li>
            <li>test목록3</li>
        </ul>
        <h1>테스트1</h1>
        <h2>테스트2</h2>
    </div>
</body>


]


◈ 결과화면





2. >가 포함되지 않은 경우


◈ 코드


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script src="https://code.jquery.com/jquery-1.11.3.js" type="text/javascript"></script>
 
<script>
$(document).ready(function () 
{
    $('div *').css('color','blue');
});
</script>
 
<body>
    <div>
        <ul>
            <li>test목록1</li>
            <li>test목록2</li>
            <li>test목록3</li>
        </ul>
        <h1>테스트1</h1>
        <h2>테스트2</h2>
    </div>
</body>


]


◈ 결과화면


3. 자식 선택자 - 예제코드 설명

1. >가 포함되어 있는 결과


◈ 코드


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script src="https://code.jquery.com/jquery-1.11.3.js" type="text/javascript"></script>
 
<script>
$(document).ready(function () 
{
    $('div > *').css('color','blue');
});
</script>
 
<body>
    <div>        
        <ul style="color: blue;">
            <li> test목록1</li>
            <li> test목록2</li>
            <li> test목록3</li>
        </ul>
        <h1 style="color: blue;"> 테스트1</h1>
        <h2 style="color: blue;">테스트2</h2>
    </div>
</body>





◈ 설명


 ※ div 태그의 바로 밑에 있는 자식 태그(ul,h1,h2)에만 color:blue 가 생성됩니다





2.>가 포함되어 있지 않는 결과


◈ 코드


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script src="https://code.jquery.com/jquery-1.11.3.js" type="text/javascript"></script>
 
<script>
$(document).ready(function () 
{
    $('div *').css('color','blue');
});
</script>
 
<body>
    <div>        
        <ul style="color: blue;">
            <li style="color: blue;"> test목록1</li>
            <li style="color: blue;"> test목록2</li>
            <li style="color: blue;"> test목록3</li>
        </ul>
        <h1 style="color: blue;"> 테스트1</h1>
        <h2 style="color: blue;">테스트2</h2>
    </div>
</body>






◈ 설명


 ※ div 태그의 밑에 있는 전체 태그 color:blue 가 생성됩니다




댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday