首頁  >  文章  >  web前端  >  jQuery實作尋找最近父節點的方法

jQuery實作尋找最近父節點的方法

韦小宝
韦小宝原創
2017-11-29 10:18:112772瀏覽

本文實例講述了jQuery實現查找最近父節點的方法,對於jQuery不太熟的同學們,我們一起來學習jQuery吧!

這裡示範尋找目前控制項最近的table程式碼:

<html>
  <head>
    <title>usually function</title>
  </head>
  <body>
    <table name="name_table1">
      <tr>
        <td>table1</td>
      </tr>
    </table>
    <table name="name_table2">
      <tr>
        <td>table2</td>
      </tr>
    </table>
    <table name="name_table3">
      <tr>
        <td>table3</td>
      </tr>
    </table>
  </body>
<html>
<script type="text/javascript" src="jquery-1.4.4.js"></script>
<script>
$(function(){
  $("td").bind("click",function(){
    //alert($(this).html());
    alert($(this).closest("table").attr("name"));
  });
});
</script>

以上就是jQuery實作尋找最近父節點的方法,更多jQuery相關的內容請在本站進行搜尋哦~

相關推薦:

#JQuery節點元素屬性操作方法_jquery

JQuery中選擇器與DOM節點操作的實例詳解

#jQuery中DOM操作實例分析

以上是jQuery實作尋找最近父節點的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn