找到兄弟姐妹后,将类添加到兄弟姐妹中

时间:2012-07-26 17:52:11

标签: jquery

如果我使用以下声明......

if ($('divA').siblings().text() == "1") {
 the code here needs to add a class to that specific sibling where text = 1
}

如何选择兄弟div来添加课程?

1 个答案:

答案 0 :(得分:0)

$('divA').siblings().filter(function(index) {
    return $(this).text() == "1";
 }).addClass('yourClass');

您可以使用.filter()功能将.siblings()集合缩减为仅针对您的条件返回true的集合,然后使用.addClass()将您的类添加到已过滤的兄弟节点。