jquery 获取子元素
时间: 2023-06-25 18:05:18 浏览: 116
jQuery获得子元素个数的方法
可以使用 jQuery 的 `children()` 方法来获取元素的直接子元素,例如:
```html
<div class="parent">
<div class="child">Child 1</div>
<div class="child">Child 2</div>
<div class="child">Child 3</div>
</div>
```
```javascript
// 获取 .parent 元素的所有直接子元素
$('.parent').children();
```
这将返回一个包含所有直接子元素的 jQuery 对象,即 `$('.child')`。如果你只想选择某个特定的子元素,可以给 `children()` 方法传递一个选择器参数,例如:
```javascript
// 获取 .parent 元素中类名为 .child 的第一个子元素
$('.parent').children('.child:first-child');
```
这将返回 `.parent` 元素中类名为 `.child` 的第一个子元素,即 `$('.child:first-child')`。
阅读全文