tr');-6ren">
gpt4 book ai didi

javascript - 使用 jquery 选择表中的 TR。

转载 作者:行者123 更新时间:2023-11-28 12:35:37 26 4
gpt4 key购买 nike

我在表场景中有表。当我尝试使用选择 trs 时$("#table tr"); 然后它也从内部表中选择所有 tr 。

如何仅从外表中选择 tr。

最佳答案

改用这个:

$('#table > tr'); // choose direct child tr nodes from table with id 'table'

或者

$('#table > tbody > tr');

如果您有 tbody 元素。

这里是 jQuery 文档的链接:http://api.jquery.com/child-selector/

关于javascript - 使用 jquery 选择表中的 TR。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17291933/

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