选择子集中的第一个
我有一个像这样的 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 this
es.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这行得通吗?
编辑:如果第一项是
this
类,则不起作用,您将需要它(如果适用):Will this work?
EDIT: If the first item is of class
this
, that won't work, you'll need this (if it applies):循环遍历具有
this
类的所有元素,如果其前一个同级元素没有相同的类,则向其中添加that
loop through all elements with the class
this
and if its previous sibling doesn't have a the same class then addthat
to it