欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery中children()方法用法实例教程

程序员文章站 2023-11-03 18:53:58
本文实例讲述了jquery中children()方法用法。分享给大家供大家参考。具体分析如下: 此方法取得一个包含匹配元素集合中每一个元素的所有子元素的元素集合。 可以通过可选...

本文实例讲述了jquery中children()方法用法。分享给大家供大家参考。具体分析如下:

此方法取得一个包含匹配元素集合中每一个元素的所有子元素的元素集合。
可以通过可选的表达式来过滤所匹配的子元素。

注意:find()将查找所所有子元素,而children()只获取一级子元素。

语法结构:

代码如下:

$(selector).children(expr)

 

参数列表:

参数 描述
expr 可选。用以过滤子元素的表达式

 

实例代码:

实例一:

 

代码如下:


<!doctype html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="https://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>
<p class="father">
<p class="children">
   <p>我是孙子p</p>
</p>
<p>我是儿子p</p>
</p>
<p>我是兄弟p</p>
</body>
</html>

 

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

实例二:

 

代码如下:


<!doctype html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="https://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>
<p class="father">
<p class="children">
   <p>我是孙子p</p>
</p>
<p>我是儿子p</p>
</p>
<p>我是兄弟p</p>
</body>
</html>

以上代码可以将处class属性值为children的子元素中的字体颜色设置为红色。