jquery遍历节点 children(),next(),prev(),siblings()closest()

Posted hahajava

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery遍历节点 children(),next(),prev(),siblings()closest()相关的知识,希望对你有一定的参考价值。

方法方法描述
children() 获取匹配元素的 子元素个数(只考虑 儿子 元素)
next() 获取 后面紧邻的 同辈元素
prev() 获取 前面 紧邻的 同辈元素
siblings() 获取所有的 同辈元素
closest() 从元素本身开始,逐级向上级元素匹配,并返回最先匹配的祖先元素。(有,只返回一个元素节点。没,返回一个空jquery 对象)
$(“document”).click(function( e ){
    //获取点击元素 的 上级li ,将  li的颜色设置为红色
    $( e. target).closest("li").css("color","red");
});

https://blog.csdn.net/a_as31243qadfg/article/details/51859594


以上是关于jquery遍历节点 children(),next(),prev(),siblings()closest()的主要内容,如果未能解决你的问题,请参考以下文章

jQuery遍历

jQuery遍历之find()

jQuery:节点遍历

JQuery的遍历函数总结

jQuery 遍历函数

jQuery 遍历函数