选择子集中的第一个

发布于 2024-12-11 15:17:25 字数 989 浏览 0 评论 0原文

我有一个像这样的 DOM;

<li></li>
<li class="this"></li>
<li class="this"></li>
<li></li>
<li></li>
<li class="this"></li>
<li class="this"></li>
<li class="this"></li>
<li></li>
<li class="this"></li>
<li></li>
<li></li>

我只想选择每个连续 this 系列中的第一个 li。

因此,如果我将 .addClass("that") 应用于此选择器的对象,则生成的 DOM 将如下所示;

<li></li>
<li class="this that"></li>
<li class="this"></li>
<li></li>
<li></li>
<li class="this that"></li>
<li class="this"></li>
<li class="this"></li>
<li></li>
<li class="this that"></li>
<li></li>
<li></li>

实现这种效果的最有效方法是什么?我无法添加或删除 DOM 中的任何元素(因此,例如将连续的系列包装在它们自己的包装器 div 中是不可能的)。

预先非常感谢!

I have a DOM like this;

<li></li>
<li class="this"></li>
<li class="this"></li>
<li></li>
<li></li>
<li class="this"></li>
<li class="this"></li>
<li class="this"></li>
<li></li>
<li class="this"></li>
<li></li>
<li></li>

I would only like to select the first li within each series of consecutive thises.

So, if I would for instance apply a .addClass("that") to the objects of this selector, the resulting DOM would look like so;

<li></li>
<li class="this that"></li>
<li class="this"></li>
<li></li>
<li></li>
<li class="this that"></li>
<li class="this"></li>
<li class="this"></li>
<li></li>
<li class="this that"></li>
<li></li>
<li></li>

What would be the most efficient way of achieving such an effect? I cannot add or remove any elements in the DOM (so for instance wrapping the consecutive series in their own wrapper divs is not possible).

Thanks a lot in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雪若未夕 2024-12-18 15:17:25

这行得通吗?

$("li:not(.this) + .this").addClass('that');

编辑:如果第一项是 this 类,则不起作用,您将需要它(如果适用):

$("li:not(.this) + .this, .this:first-of-type").addClass('that');

Will this work?

$("li:not(.this) + .this").addClass('that');

EDIT: If the first item is of class this, that won't work, you'll need this (if it applies):

$("li:not(.this) + .this, .this:first-of-type").addClass('that');
十秒萌定你 2024-12-18 15:17:25
$('.this').each(function(){
    if($(this).prev().hasClass('this')==false){
        $(this).addClass('that');
    }
});

循环遍历具有 this 类的所有元素,如果其前一个同级元素没有相同的类,则向其中添加 that

$('.this').each(function(){
    if($(this).prev().hasClass('this')==false){
        $(this).addClass('that');
    }
});

loop through all elements with the class this and if its previous sibling doesn't have a the same class then add that to it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文