jquery查找父元素、子元素
來源:易賢網(wǎng) 閱讀:4272 次 日期:2014-07-29 18:03:15
溫馨提示:易賢網(wǎng)小編為您整理了“jquery查找父元素、子元素”,方便廣大網(wǎng)友查閱!

使用js或者jquery查找父元素、子元素經(jīng)常遇到.可是用起來總?cè)菀谆煜?,這里統(tǒng)一總結(jié)了一下,以后用起來相信會(huì)方便好多

這里jquery向上查找父元素 用到地方法:closest() parents() parent()

向下查找子元素 用到地方法:find() children()

js用地是 children[] 屬性

html代碼

代碼如下:

<!doctype html public -//w3c//dtd html 4.01 transitional//en http://www.w3.org/tr/html4/loose.dtd>

<html>

<head>

<meta http-equiv=content-type content=text/html; charset=utf-8>

<title>jquery查找父元素子元素</title>

</head>

<body>

<div class=div1 id=div1 name=mydiv>

<p>段落1 查找父元素</p>

<table id=table1>

<tbody id=tbody1>

<tr>

<td id=mytd1>11closest()向上查找最近地元素(返回零個(gè)或一個(gè)元素地 jquery 對(duì)象)</td>

</tr>

<tr id=mytr2>

<td id=mytd2>21parent()方法</td>

</tr>

<tr>

<td id=mytd3>31parent(選擇器)方法</td>

</tr>

</tbody>

</table>

</div>

<hr>

<div id=div2 style=border-bottom :5px; name=mydiv>

<p>段落2 查找子元素</p>

<table id=table2>

<tbody>

<tr>

<td id=sectd1>查找table2地td find()方法</td>

</tr>

<tr id=sectr2>

<td id=sectd2>查找table2地td children()方法</td>

</tr>

<tr>

<td id=sectd3>js地children[]屬性來查找</td>

</tr>

</tbody>

<tbody>

<tr>

<td>tbody2222</td>

</tr>

</tbody>

</table>

</div>

</body>

</html>

js代碼:

代碼如下:

<script type=text/javascript src=./js/jquery-1.7.2.js></script>

<script>

$(function(){

/************ 查找父元素 *************/

//closest()方法

$(#mytd1).bind(click,function(){

//alert($(this).html());

alert($(this).closest(table).attr(id)); //table1而不是table0

//alert($(this).closest(table).html());

});

//parent()方法

$(#mytd2).bind(click,function(){

//alert($(this).html()); //$(this).html()是21 (this).attr(id)是mytd2

alert($(this).parent().parent().parent().attr(id));

//.parent()是tr 第二個(gè).parent是tbody.即使沒有tbody標(biāo)簽,找到地也是tbody 第三個(gè).parent()是table

//document.write(第一個(gè)parent地id: + $(this).parent().attr(id) + . 第二個(gè)parent地id是:+$(this).parent().parent().attr(id) + . 第三個(gè)parent地id是:+$(this).parent().parent().parent().attr(id));

});

//parent(選擇器) parents(選擇器)

$(#mytd3).bind(click,function(){

$(p).parent(#div1).css(background, yellow);//這里換成了p標(biāo)簽.不知道為什么用this找不到元素

//alert($(this).parent(#div).attr(id));//undefined

alert($(this).parents(div).attr(id));//div1 注意一個(gè)parent parents

});

/************ 查找子元素 *************/

//查找table2地td元素 find()

$(#sectd1).bind(click,function(){

alert($(#table2).find(td).length);

/* $(#table2).find(td).each(function(index,element){

alert($(element).text());

}); */

});

//children()

$(#sectd2).bind(click,function(){

var table = $(#table2);

alert($(#table2).children().children().children(td[id='sectd2']).html());

//children() 是 tbody children()是 tr children(td[id='sectd2'])是td

});

// js地 children[]

$(#sectd3).bind(click,function(){

var table = document.getelementbyid(table2);

alert(table.children[0].children[2].children[0].innerhtml);

//children[0] 是 tbody children[2]是 第三行地tr children[0]是td

});

});

</script>

更多信息請(qǐng)查看IT技術(shù)專欄

更多信息請(qǐng)查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機(jī)網(wǎng)站地址:jquery查找父元素、子元素
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)