1

我有一个表,其中包含恰好有一个 th 和一个 td 的行,如下所示:

<tr>
  <th>Phone Number</th>
  <td>555-555-1212</td>
</tr>

我需要使用文本“电话号码”来选择 td 单元格(并替换 html)。我可以用

$('th:contains("Phone Number")')

但我不知道如何选择相应的 td 单元格。

4

4 回答 4

1
$('th:contains("Phone Number")').next('td');
于 2013-04-23T03:25:05.197 回答
0
$('th:contains("Phone Number")').next("td")
于 2013-04-23T03:25:14.523 回答
0
  var html = "some html";  
  $('th:contains("Phone Number")').next('td').html(html);
于 2013-04-23T03:27:16.117 回答
0

$("th:contains('电话号码')").siblings("td");

如果你只有一个兄弟姐妹,你也可以使用它,否则 next() 是最好的。

于 2013-04-23T03:29:34.963 回答