如何获取一个div中的指定元素

2024-12-29 04:36:51
推荐回答(3个)
回答1:

获取制定元素的方法有2种,分别是children()方法和find()方法。
1、children()方法:获取该元素下的直接子集元素
2、find()方法:获取该元素下的所有子集元素

分别以以下HTML代码为例:

  • list1
    • list1-1
    • list1-2
  • list2
    • list2-1
    • list2-2
  • list3
    • list3-1
    • list3-2

children()方法获取ul下面直接子集元素li:$("ul").children("li")
需要注意的是,如果li元素下还有li元素,children方法将不会被获取。我们可以用length来测试获取的个数“$("ul").children("li").length”,最后输出结果为3
find()方法获取ul下所有元素li:$("ul").find("li")
需要注意的是,find方法会无限循环查找ul标签节点下的li,一直找到没有为止,用length来测试获取个数“$("ul").find("li").length”,最后输出结果为9
children和find的区别:children只会查找直接子集,而find会跨越层级查找,一直找到没有为止。

回答2:

var chirldshitfuckumother = ducument.getElementById(divid).childNodes;
for(....){
if(chirldshitfuckumother[i].nodeName = '#text'){
alert("fuck u mother fucker!!!");
}
}

回答3:

$("#div input[type='text']").each(function() {
$(this).val();//获取值
});