gpt4 book ai didi

jQuery `children` 与 ` find`

转载 作者:行者123 更新时间:2023-12-03 23:05:12 26 4
gpt4 key购买 nike

HTML

<table id='t'>
<tr>
<td id='foo' class='a b c'>blah</td>
<td id='bar' class='a c'>bloo</td>
<td id='zip' class='a b c'>blop</td>
</tr>
</table>

使用 jQuery,为什么以下 children 调用返回 0

$('#t').children('tr').length

但是find返回1?

$('#t').find('tr').length

https://jsfiddle.net/o71x6co6/1/

最佳答案

因为如果您不这样做,浏览器会自动添加 tbody 元素。

console.log($('#t').children().get(0).tagName);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table id='t'>
<tr>
<td id='foo' class='a b c'>blah</td>
<td id='bar' class='a c'>bloo</td>
<td id='zip' class='a b c'>blop</td>
</tr>
</table>

关于jQuery `children` 与 ` find`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40180480/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com