The find() method returns descendant elements of the selected element.
(find() 메서드는 선택한 요소의 하위 요소를 반환합니다.)
html
<div class="a">
<span class="s1">Lorem</span>
<span class="s2">Ipsum</span>
<span class="s3">Dolor</span>
</div>
<div class="b">
<span class="s1">Lorem</span>
<span class="s2">Ipsum</span>
<span class="s3">Dolor</span>
</div>
css
.color {
color:red;
font-size:2em;
font-weight:bold;
}
Jquery
$( '.a' ).find( 'span.s2' ).css( 'font-size', '2em');
$( '.b' ).find( 'span.s3' ).addClass('color');
Result(결과)
반응형
'프로그램' 카테고리의 다른 글
jQuery parents() Method (0) | 2022.01.12 |
---|---|
jQuery hover() Method (0) | 2022.01.08 |
jQuery siblings() Method (0) | 2021.12.31 |
jQuery parent() Method (0) | 2021.12.31 |
alert message box(간단한 경고 메세지 박스) (0) | 2021.12.30 |
댓글