返回值:jQuerychildren([selector])

取得匹配元素集合中每个元素的子元素,也可以通过一个选择器进行过滤。

若一个 jQuery 对象代表了一个 DOM 元素集合,.children() 方法允许我们在 DOM 树中查找集合中的子元素,并根据匹配的元素创建一个新的 jQuery 对象。.children() 方法不同于 .find() 之处是 .children() 只在 DOM 树的单一层次上向下遍历,然而 .find() 可以却可以在多个层次上向下遍历,包括后代元素,孙子元素等。同样需要注意的是,像大多数 jQuery 方法一样,.children() 并不返回文本节点。若要返回所有子元素,包括文本和注释节点的话,请使用 .contents()

.children() 方法还可以接受一个可选的选择器表达式,该选择器表达式可以是任何可传给 $() 函数的选择器表达式。如果提供了该选择器,则会对过滤出的元素进行测试,判断它们是否满足该选择器。

例如,在页面上有如下一个基本的嵌套列表:

<ul class="level-1">
  <li class="item-i">I</li>
  <li class="item-ii">II
    <ul class="level-2">
      <li class="item-a">A</li>
      <li class="item-b">B
        <ul class="level-3">
          <li class="item-1">1</li>
          <li class="item-2">2</li>
          <li class="item-3">3</li>
        </ul>
      </li>
      <li class="item-c">C</li>
    </ul>
  </li>
  <li class="item-iii">III</li>
</ul>

如果我们从 level-2 列表开始查找它的子元素:

$('ul.level-2').children().css('background-color', 'red');

其结果是,列表项 A, B(B 中还含有一个列表), 和 C 会有红色背景。由于我们没有提供选择器表达式,所以返回的 jQuery 对象中包含所有的子元素。如果我们提供了选择器表达式,那么上述三个列表项中,只有与选择器表达式相匹配的列表项才会被

示例:

查找被点击的元素的所有子元素。

<!DOCTYPE html>
<html>
<head>
<style>
  body { font-size:16px; font-weight:bolder; }
  div { width:130px; height:82px; margin:10px; float:left;
        border:1px solid blue; padding:4px; }
  #container { width:auto; height:105px; margin:0; float:none;
        border:none; }
  .hilite { border-color:red; }
  #results { display:block; color:red; }
  p { margin:10px; border:1px solid transparent; }
  span { color:blue; border:1px solid transparent; }
  input { width:100px; }
  em { border:1px solid transparent; }
  a { border:1px solid transparent; }
  b { border:1px solid transparent; }
  button { border:1px solid transparent; }
  </style>
<script src="jquery.min.js"></script>
</head>
<body>

<div id="container">

    <div>
      <p>This <span>is the <em>way</em> we</span> 
      write <em>the</em> demo,</p>

    </div>
    <div>
      <a href="#"><b>w</b>rit<b>e</b></a> the <span>demo,</span> <button>write 
      the</button> demo,
    </div>

    <div>
      This <span>the way we <em>write</em> the <em>demo</em> so</span>

      <input type="text" value="early" /> in
    </div>
    <p>
      <span>t</span>he <span>m</span>orning.
      <span id="results">Found <span>0</span> children in <span>TAG</span>.</span>

    </p>
  </div>

<script>



    $("#container").click(function (e) {
      $("*").removeClass("hilite");
      var $kids = $(e.target).children();
      var len = $kids.addClass("hilite").length;

      $("#results span:first").text(len);
      $("#results span:last").text(e.target.tagName);

      e.preventDefault();
      return false;
    });


</script>
</body>
</html>

演示:

示例:

查找每个 div 的所有子元素。

<!DOCTYPE html>
<html>
<head>
<style>
  body { font-size:16px; font-weight:bolder; }
  span { color:blue; }
  p { margin:5px 0; }
  </style>
<script src="jquery.min.js"></script>
</head>
<body>

<p>Hello (this is a paragraph)</p>

  <div><span>Hello Again (this span is a child of the a div)</span></div>
  <p>And <span>Again</span> (in another paragraph)</p>

  <div>And One Last <span>Time</span> (most text directly in a div)</div>

<script>

$("div").children().css("border-bottom", "3px double red");

</script>
</body>
</html>

演示:

示例:

查找含有 "selected" 样式的 div 的所有子元素。

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

  body { font-size:16px; font-weight:bolder; }
  p { margin:5px 0; }
  </style>
<script src="jquery.min.js"></script>
</head>
<body>

<div>
    <span>Hello</span>
    <p class="selected">Hello Again</p>
    <div class="selected">And Again</div>

    <p>And One Last Time</p>
  </div>

<script>

$("div").children(".selected").css("color", "blue");

</script>
</body>
</html>

演示: