이 글에서는 주로 jQuery에서 find() 메서드의 사용법을 소개합니다. find() 메서드의 기능과 정의는 물론, 일치하는 요소의 하위 요소를 얻는 사용 방법도 참고할 수 있습니다. to it
이 문서에서는 jQuery의 find() 메서드 사용 예를 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
이 방법은 일치하는 요소 컬렉션에 있는 모든 요소의 하위 요소를 가져오고 선택기, jQuery 개체 또는 요소를 통해 삭제합니다.
find() 메서드는 일치하는 요소의 하위 요소를 가져오는 좋은 방법입니다.
참고: children()은 첫 번째 수준 하위 요소만 가져오는 반면, find()는 모든 하위 요소를 찾습니다.
문법 구조 1:
코드는 다음과 같습니다:
$(selector).find(expr)
매개변수 목록:
예제 코드:
코드는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title>children()函数-脚本之家</title> <script type="text/ javascript " src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $( document ).ready(function(){ $(".father").find("p").css("color","red"); }) </script> </head> <body> <p class="father"> <p class="children"> <p>我是孙子p</p> </p> <p>我是儿子p</p> </p> <p>我是兄弟p</p> </body> </html>
위 코드는 father 요소 아래의 모든 p 요소의 글꼴 색상을 빨간색으로 설정할 수 있습니다.
문법 구조 2:
코드는 다음과 같습니다.
$(selector).find(element)
일치하는 요소 아래에서 지정된 요소를 찾을 수 있습니다.
매개변수 목록:
코드는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title>find()函数-脚本之家</title> <style type="text/css"> .father{ height:200px; width:200px; border:1px solid blue; } </style> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".father").find(document.getElementById("myp")).css("border","1px solid red"); }) </script> </head> <body> <p class="father"> <p class="children"> <p id="myp">我是孙子p</p> </p> <p>我是儿子p</p> </p> <p>我是兄弟p</p> </body> </html>
위 코드는 아버지 요소 아래에서 id
attribute값이 myp인 요소의 테두리를 1픽셀 빨간색으로 설정할 수 있습니다.
위 내용은 jQuery의 find() 메소드 사용 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!