如何使用jquery通过指定的标签名称获取父元素?

前端之家收集整理的这篇文章主要介绍了如何使用jquery通过指定的标签名称获取父元素?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想获得一个具有指定标签名称的元素的父级。

示例代码

<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.

解决方法

.closest()

Get the first ancestor element that matches the selector,beginning at the current element and progressing up through the DOM tree.

也就是说,

$('#myId').closest('table')

(Demo)

原文链接:https://www.f2er.com/jquery/185164.html

猜你在找的jQuery相关文章