gpt4 book ai didi

javascript - 如何使用jquery获取html表格中的 child 数量

转载 作者:行者123 更新时间:2023-11-29 17:53:46 27 4
gpt4 key购买 nike

我无法理解 jquery 的行为方法 children .我可以数出 <p> 的数量在<div>使用:

   var abc = $("div").children("p");
alert(abc.length);

但同样的事情应用于<tr><table> 内结果为 0(零)计数。

   var abc = $("table").children("tr");
alert(abc.length);

为什么会这样?

最佳答案

试试这个

$("table tr").length;

如果你只想在tbody中获取tr

$("table tbody tr").length;

关于javascript - 如何使用jquery获取html表格中的 child 数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41031710/

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