jquery选择x元素和addClass到target和child

时间:2017-01-06 23:45:58

标签: javascript jquery select

这可以链接到一个班轮吗? (.text是.text-container的子代)

$('.text-container:eq(15)').nextAll().addClass('hidden');
$('.text-container:eq(15)').nextAll().find('.text').addClass('hidden');

由于

2 个答案:

答案 0 :(得分:1)

如果我正确理解你的问题,你想把隐藏的类添加到.text-container:eq(15)以及包含类文本的所有子文件中?

如果是这样,你可以这样做:

$('.text-container:eq(15), .text-container:eq(15) .text').addClass('hidden');

答案 1 :(得分:1)

jQuery中的所有修改方法都是可链接的(它们返回应用它们的集合),因此您可以编写:

$('.text-container:eq(15)').nextAll().addClass('hidden').find(".text").addClass('hidden');