我想获得一个Element的父级,它具有特定的标记名称。
示例代码:
<table>
<tr>
<td>
<input type='button' id='myId' />
</td>
</tr>
</table>
现在我想要这样的事情:
$('#myId').specificParent('table'); //returns NEAREST parent of myId Element which table is it's tagname.
答案 0 :(得分:101)
答案 1 :(得分:8)
$('#myId').closest("table");
答案 2 :(得分:1)
$('#myId').parents('table')
同样适用