我想<tr>
通过知道其中一个元素(div)的ID来获取表的元素。
这是表格在 HTML 中的样子:
<table id="table-0">
<thead>
<tr role="row">
<th>house</th>
<th>phone</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="">
<div id="56"></div>my house
</td>
<td class="">
<div id="57"></div>1234
</td>
</tr>
</tbody>
</table>
所以我想得到一个<tr>
元素,它的<td>
元素包含一个<div>
ID 为 56 的元素(在这个例子中)。
这是我在 jQuery 中尝试的(data['id'] = 56):
var tr = $("tr:has(td:has($(\"#\" + data['id']))))");