本文實例講述了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實作尋找最近父節點的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!