如何通过td的id选择一个表?
答案 0 :(得分:5)
你可能想要像
这样的东西$("#myId").closest("table");
但我不完全确定 - 你能澄清或提供一个例子吗?
答案 1 :(得分:2)
使用以下示例代码
<table id="test">
<tr>
<td id="one">one</td>
</tr>
</table>
<table>
<tr>
<td id="two">two</td>
</tr>
</table>
$(document).ready(function(){
var table = $("#one").closest('table');
});
请参阅example here
答案 2 :(得分:2)
答案 3 :(得分:1)
试试这个:
$('td#id').closest('table')