closest

往parent找最近的元素。
children, sibling, parent’s sibling 都不會找到。

用法

<h1>我是標題</h1>
<table>
  <tbody>
    <tr id="myTr">
      <td>測試資料</td>
    </tr>
    <tr>
      <td>測試資料</td>
    </tr>
  </tbody>
</table>
myTr.closest('table') //回傳table這個元素
myTr.closest('td') //null //無法尋找子層
myTr.closest('tr') //null //無法尋找兄弟層
myTr.closest('h1') //null //無法尋找父層的兄弟