兄弟们!怎么用JS JS JS 获取当前元素的第一级子元素?
发布网友
发布时间:2022-05-01 21:15
我来回答
共3个回答
热心网友
时间:2022-06-23 14:18
<script>
var father=document.getElementById("father")
var div=father.getElementsByTagName("div")[0]
a()
function a(){
var ary=[]
var b=div.nextElementSibling
while (b){
ary.push(b)
b=b.nextElementSibling
}
console.log(ary)
}
</script>
热心网友
时间:2022-06-23 14:18
原生JS的话 我举例子吧 我喜欢举例子 你自己看
<!DOCTYPE html>
<html>
<body>
<div id="father">
<div><div>dfdfdf</div></div>
<div><div></div></div>
</div>
<script>
var c=document.getElementById("father").children;//获取id为father的所有子节点,这句代码就是答案啦
c[0].style.fontSize="28px";//下面的代码验证成功用
console.log(c);
}
</script>
</body>
</html>
嘛 其实JQ也挺好的
$('#father').children()
所以加个分采纳吧
追问嗯!非常感谢!!!用jq了,答案应该采纳你的,点错了.....尴尬。。。
追答坟蛋!!怎么又一个这样的= = = 555你们手怎么都那么滑
热心网友
时间:2022-06-23 14:19
用JQuery多好 $("#father").children("div");