이 글은 주로 jQuery에서 prevAll() 메소드의 사용법을 소개합니다. prevAll() 메소드의 기능과 정의를 분석하고, 일치하는 요소가 설정되기 전에 모든 형제 요소를 찾는 사용법을 설명합니다. 기사
이 예제에서는 jQuery에서 prevAll() 메서드를 사용하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
이 방법은 일치하는 요소 집합 이전의 모든 형제 요소를 찾습니다.
형제 요소 컬렉션은 선택기를 통해 필터링할 수 있습니다.
문법 구조:
코드는 다음과 같습니다:
$("selector").prevAll(expr)
매개변수 목록:
예제 코드:
예제 1:
코드는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title>脚本之家</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 p").prevAll().css("color","blue") }) </script> </head> <body> <p class="father"> <p>我是p元素</p> <span>我是span元素</span> <p>我是p元素</p> <p>我是p元素</p> </p> </body> </html>
예제 2:
코드는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title>脚本之家</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 p").prevAll("span").css("color","blue") }) </script> </head> <body> <p class="father"> <p>我是p元素</p> <span>我是span元素</span> <p>我是p元素</p> <p>我是p元素</p> </p> </body> </html>
위 내용은 jQuery의 prevAll() 메소드 사용 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!