gpt4 book ai didi

jquery - 单击 thead 时隐藏表的 tbody

转载 作者:行者123 更新时间:2023-11-28 03:56:40 24 4
gpt4 key购买 nike

我有一个表结构,如下所示。

    <table>
<thead>
<tr></tr>
<tr></tr>
</thead>
<tfoot>
<tr></tr>
<tr></tr>
</tfoot>
<tbody>
<tr></tr>
<tr></tr>
</tbody>
</table>

我想在点击 thead 的第一行时切换显示/隐藏 tbody 和 tfoot。我尝试了很多东西但都失败了,因为可能有多个这样的表。我正在使用 jquery。提前致谢。

最佳答案

这是我的作品:

$(document).on('click','thead',function(){
$(this).closest('table').find('tbody').toggle();
$(this).closest('table').find('tfoot').toggle();
});

这是 Fiddle

关于jquery - 单击 thead 时隐藏表的 tbody,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17336564/

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