======jQuery Traversing - Filtering======
$(document).ready(function () {
$("div").first().css("background-color", "yellow");
});
=====jQuery last() Method()=====
''last()'' 메서드는 지정된 요소들 중에서 마지막 요소를 반환합니다.\\
\\
다음 예제는 마지막 ''%%
$(document).ready(function () {
$("div").last().css("background-color", "yellow");
});
=====jQuery eq() Method()=====
''eq()'' 메서드는 선택한 요소들 중에서 특정 인덱스 번호를 가진 요소를 반환합니다.\\
\\
인덱스 번호는 0에서 시작하므로 첫 번째 요소의 색인 번호는 1이 아니라 0입니다.\\
다음 예제에서는 두 번째 ''%%%%'' 요소(인덱스 번호 1)를 선택합니다.\\
====예제====
$(document).ready(function () {
$("p").eq(1).css("background-color", "yellow");
});
=====jQuery filter() Method=====
''filter()'' 메서드를 사용하여 기준(criteria)을 지정할 수 있습니다.\\
기준과 일치하지 않는 요소는 선택 항목에서 제거되고 일치하는 요소가 반환됩니다.\\
\\
다음 예제는 클래스 이름이 "intro"인 모든 ''%%
%%'' 요소를 반환합니다.\\
====예제====
$(document).ready(function () {
$("p").filter(".intro").css("background-color", "yellow");
});
=====jQuery not() Method=====
''not()'' 메서드는 기준과 일치하지 않는 모든 요소들을 반환합니다.\\
\\
**Tip:** ''not()'' 메서드는 ''filter()''와 반대입니다.\\
\\
다음 예제는 클래스 이름 "intro"를 가지지 않은 모든 ''%%
%%'' 요소들을 반환합니다.\\
====예제====
$(document).ready(function () {
$("p").not(".intro").css("background-color", "yellow");
});
=====jQuery Traversing Reference=====
모든 %%jQuery%% Traversing 메서드에 대한 전체 개요를 보려면 [[https://www.w3schools.com/jquery/jquery_ref_traversing.asp|jQuery Traversing Reference]]로 이동하십시오.
{{tag>오션 jQuery Traversing - Filtering}}