jQuery children()

admin發表於2017-02-15

方法獲取一個包含匹配元素集合中每一個元素的所有子元素集合。

可以通過可選的表示式來過濾所匹配的子元素。

jQuery1.0版本新增。

語法結構:

[JavaScript] 純文字檢視 複製程式碼
.children([selector])

引數解析:

selector:一個用於匹配元素的選擇器字串。

程式碼例項:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.father{
  width:300px;
  height:200px;
  background:red;
  margin:20px;
}
.middle {
  width:200px;
  height:100px;
  background:blue;
}
.inner {
  width:100px;
  height:50px;
  background:green
}
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function () {
  $("#bt").click(function () {
    $(".father").children("p").css("background-color","black");
  })
})
</script> 
</head>
<body>
<input type="button" id="bt" value="檢視效果"/>
<div class="father">
  <div class="middle">
    <div class="inner"></div>
  </div>
</div>
<div class="father">
  <p class="middle">
    <div class="inner"></div>
  </p>
</div>
</body>
</html>

上面的程式碼能夠將p元素的字型顏色設定為黑色。

相關文章