-1

如果同一表中的 TR TH 元素包含某些特定文本,我正在尝试使用 jquery 来选择表中的所有 TR TD 元素。然后,我想遍历所有 TR TD 元素。我尝试了很多方法都没有成功。我在文档中有多个表,它们具有不同的 th 元素,但在其他方面是相同的。

<tbody>
<tr>
<th>header1</th>
<tr><td>data1</td><tr>
<tr><td>data2</td><tr>
<tr><td>data3</td><tr>

在这种情况下,如果 th = header1,则选择所有 tr td 元素

4

1 回答 1

0

如果它只是一个维度,为什么你不这样做:

[编辑代码]

var td_selection = null ;
var th_to_check = $('tbody tr th') ;
if(th_to_check.text() == 'header1') {
     td_selection = th_to_check.children() ;
}

?

但我认为最好的选择是玩类。将类设置为所需的 td,然后使用

td_selection = $('.td_class') ;
于 2013-02-27T21:07:15.737 回答