jQuery 순회 - 필터링
다양한 요소 검색
가장 기본적인 세 가지 필터링 방법은 first(), last() 및 eq()이며, 이를 사용하면 요소 집합 내의 위치에 따라 특정 요소를 선택할 수 있습니다.
filter() 및 not()과 같은 다른 필터링 방법을 사용하면 지정된 기준과 일치하거나 일치하지 않는 요소를 선택할 수 있습니다.
first() 메서드
first() 메서드는 선택한 요소의 첫 번째 요소를 반환합니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <script> $(document).ready(function(){ $("div p").first().css("background-color","blue"); }); </script> </head> <body> <div> <p>段落1</p> </div> <div> <p>段落2</p> </div> <p>段落3</p> </body> </html>
첫 번째 <div> 요소 내부의 첫 번째 <p> 요소를 선택합니다.
last() 메서드
last() 메서드는 선택한 요소 중 마지막 요소를 반환합니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <script> $(document).ready(function(){ $("div p").last().css("background-color","red"); }); </script> </head> <body> <div> <p>段落1</p> </div> <div> <p>段落2</p> </div> <p>段落3</p> </body> </html>
마지막 <div> 요소 내에서 마지막 <p> 요소를 선택합니다.
eq() 메소드
eq() 메소드는 선택된 요소 중 지정된 인덱스 번호를 가진 요소를 반환합니다.
인덱스 번호는 0부터 시작하므로 첫 번째 요소의 인덱스 번호는 1이 아닌 0입니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").eq(1).css("background-color","green"); }); </script> </head> <body> <p>php中文网 (index 0).</p> <p>http://www.php.cn (index 1)。</p> <p>google (index 2).</p> <p>http://www.google.com (index 3)。</p> </body> </html>
두 번째 <p> 요소(색인 1)를 선택합니다.
filter() 메서드
filter() 메서드를 사용하면 기준을 지정할 수 있습니다. 이 기준과 일치하지 않는 요소는 컬렉션에서 제거되고 일치하는 요소가 반환됩니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("p").filter(".url").css("background-color","yellow"); }); </script> </head> <body> <p>php中文网 (index 0).</p> <p class="url">http://www.php.cn (index 1)。</p> <p>google (index 2).</p> <p class="url">http://www.google.com (index 3)。</p> </body> </html>
클래스 이름이 "url"인 모든 <p> 요소를 반환합니다.
not() 메소드
not() 메소드는 기준과 일치하지 않는 모든 요소를 반환합니다.
팁: not() 메서드는 filter()와 반대입니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("p").not(".url").css("background-color","gray"); }); </script> </head> <body> <p>php中文网 (index 0).</p> <p class="url">http://www.php.cn (index 1)。</p> <p>google (index 2).</p> <p class="url">http://www.google.com (index 3)。</p> </body> </html>
클래스 이름 "url"이 없는 모든 <p> 요소를 반환합니다.