您好,登錄后才能下訂單哦!
<script type="text/javascript"> function show(x){ var y=$(x);//轉換成jquery對象 //查找父元素 alert( y.parent().attr("name")); alert( y.parent().attr("id")); //查找祖先,是個集合 不包括自身 alert(y.parents("tr").attr("name")) alert(y.parents("table").attr("name")) //closest()這個方法呢就是向上檢查元素并逐級匹配。首先,會從自身來匹配,匹配成功就返回本身 //查找第幾個子元素,eq() 方法會用集合中的一個元素構造一個新的 jQuery 對象。所使用的 index 參數標示集合中元素的位置。 alert(y.parent().children().eq(0).text()); alert(y.parent().children().eq(1).text()); alert(y.parent().children().eq(2).text()); alert(y.parent().children().first().text()); //children方法獲得的僅僅是元素一下級的子元素 //find方法獲得所有下級元素 } </script> </head> <body> <table name="表"> <tr id="1"name="行1"> <td>1</td> <td>袁海</td> <td onclick="show(this)">29</td> </tr> <tr id="2" name="行2"> <td>2</td> <td>yuanhai</td> <td onclick="show(this)">29</td> </tr> </table> </body>
獲取父級元素 parent parents() closest()
獲取子級元素 children() find()
jQuery.siblings(),返回兄弟姐妹節點,不分前后
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。