header
English [ˈhedə(r)] US [ˈhɛdɚ]
n. 헤더(컴퓨터 인쇄 시 각 페이지 상단에 자동으로 추가됨) 헤더;
jquery 헤더 선택기 통사론
기능: :header 선택기는 모든 헤더 요소(h1 - h6)를 선택합니다.
구문: $(":header")
jquery 헤더 선택기 예
<html> <head> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(":header").css("background-color","#B2E0FF"); }); </script> </head> <body> <html> <body> <h1>Welcome to My Homepage</h1> <p class="intro">My name is Donald</p> <p>I live in Duckburg</p> <p>My best friend is Mickey</p> <div id="choose"> Who is your favourite: <ul> <li>Goofy</li> <li>Mickey</li> <li>Pluto</li> </ul> </div> </body> </html> </body> </html>
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요