如果我使用以下声明......
if ($('divA').siblings().text() == "1") {
the code here needs to add a class to that specific sibling where text = 1
}
如何选择兄弟div来添加课程?
答案 0 :(得分:0)
$('divA').siblings().filter(function(index) {
return $(this).text() == "1";
}).addClass('yourClass');
您可以使用.filter()功能将.siblings()
集合缩减为仅针对您的条件返回true的集合,然后使用.addClass()
将您的类添加到已过滤的兄弟节点。