본문 바로가기
프로그래밍/jQuery

jQuery API 정복 - 유일한 자식 요소 찾기 : only-child

by zoo10 2011. 2. 17.

:only-child 자기가 유일한 자식인 요소를 찾아 줍니다.

원문 링크 http://api.jquery.com/only-child-selector/

only-child selector

  • jQuery(':only-child')

예 제  
형제가 없는 버튼을 찾아서 색을 바꿔줍니다.

<!DOCTYPE html>
<html>
<head>
  <style>

  div { width:100px; height:80px; margin:5px; float:left; background:#b9e }
  </style>
  <script src="http://code.jquery.com/jquery-1.5.js"></script>
</head>
<body>
  <div>
    <button>Sibling!</button>
    <button>Sibling!</button>
  </div>

  <div>
    <button>Sibling!</button>
  </div>
  <div>
    None
  </div>

  <div>  
    <button>Sibling!</button>
    <button>Sibling!</button>
    <button>Sibling!</button>

  </div>
  <div>
    <button>Sibling!</button>
  </div>
<script>$("div button:only-child").text("Alone").css("border", "2px blue solid");</script>

</body>
</html>

미리보기

 

딱 보시면 아시겠죠? 외아들 또는 외동딸 보면 티 나잖아요. 하하;;;

그럼 즐프하세요.

※ 본 예제는 http://www.jquery.com 에 있는 내용임을 밝힙니다.