gpt4 book ai didi

javascript - 在 jquery 中制作表格行而不是表格标题可点击

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:18:24 25 4
gpt4 key购买 nike

目前我正在使用

$('#mytable tr').click(function() {
blah blah
});

这使得所有行,包括标题都可以点击。如何排除 header 或 <th>的?

最佳答案

使用 <thead> 分隔页眉和正文和 <tbody>标签,并将选择器更改为 "#mytable tbody tr"

HTML 看起来像这样

<table> 
<thead>
<tr>
...
</tr>
</thead>
<tbody>
<tr>
...
</tr>
</tbody>
</table>

关于javascript - 在 jquery 中制作表格行而不是表格标题可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9003715/

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