gpt4 book ai didi

javascript - jQuery:选择 tr 中的每个 td

转载 作者:IT王子 更新时间:2023-10-29 03:08:54 26 4
gpt4 key购买 nike

我需要一种方法来与 tr 中的每个 td 元素进行交互。

具体来说,我想访问表的第一行,然后是第一列,然后是第二列,依此类推。然后移动到第二行并重复该过程。

像这样的东西(伪代码):

for each row in table
{
for each column in row
{
do cool things
}
}

jQuery:

$('#tblNewAttendees tr').each(function() {
alert('tr');
//Cool jquery magic that lets me iterate over all the td only in this row
$(magicSelector).each(function(){
alert('hi');
});

});

HTML:

<table>
<thead>
<th>someHeader</th>
</thead>
<tbody>
<tr>
<td>want to grab this first</td>
<td> this second </td>
</tr>
<tr>
<td>this third</td>
<td>this fourth</td>
</tr>
</tbody>
</table>

最佳答案

您可以在 TR 循环中简单地执行以下操作:

$(this).find('td').each (function() {
// do your cool stuff
});

关于javascript - jQuery:选择 tr 中的每个 td,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4996521/

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