DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery中children()方法用法實例教程
jQuery中children()方法用法實例教程
編輯:JQuery特效代碼     

本文實例講述了jQuery中children()方法用法。分享給大家供大家參考。具體分析如下:

此方法取得一個包含匹配元素集合中每一個元素的所有子元素的元素集合。
可以通過可選的表達式來過濾所匹配的子元素。

注意:find()將查找所所有子元素,而children()只獲取一級子元素。

語法結構:
代碼如下:$(selector).children(expr)

參數列表:
參數 描述 expr 可選。用以過濾子元素的表達式

實例代碼:

實例一:

代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>children()函數-博客園</title>
<style type="text/css">
p{
  border:1px solid blue
}
.children{
  border:1px solid green;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $(".father").children().css("height","100px");
})
</script>
</head>
<body>
<div class="father">
<div class="children">
   <p>我是孫子p</p>
</div>
<p>我是兒子p</p>
</div>
<p>我是兄弟p</p>
</body>
</html>

此方法只匹配一級子元素。

實例二:

代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>children()-博客園</title>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $(".father").children(".children").css("color","red");
})
</script> 
</head>
<body>
<div class="father">
<div class="children">
   <p>我是孫子p</p>
</div>
<p>我是兒子p</p>
</div>
<p>我是兄弟p</p>
</body>
</html>

以上代碼可以將處class屬性值為children的子元素中的字體顏色設置為紅色。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved