:only-child

$(':only-child') 1.1.4追加

他に兄弟要素を持たないエレメントを選択します。

デモ

一つだけの要素であれば、テキストを変更して青いボーダーで囲います。

<!DOCTYPE html>
<html>
<head>
  <style>
  div { width:80px; height:80px; margin:5px; float:left; background:#b9e }
</style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <div>
  <button>兄弟有り!</button>
  <button>兄弟有り!</button>
</div>
<div>
  <button>兄弟有り!</button>
</div>
<div>
  無し
</div>
<div>
  <button>兄弟有り!</button>
  <button>兄弟有り!</button>
  <button>兄弟有り!</button>
</div>
<div>
  <button>兄弟有り!</button>
</div>
<script>
  $("div button:only-child").text("一つだけ").css("border", "2px blue solid");
</script>
</body>
</html>

 Back to top

© 2010 - 2017 STUDIO KINGDOM