我知道允许我们操作相邻元素的+
选择器,但我希望操纵所有元素而不仅仅是一个元素。
<article class="non-selected"></article>
<nav id="nav-below"></nav>
<article class="select-me"></article>
<article class="select-me"></article>
<article class="select-me"></article>
<footer class="dont-select-me"></footer>
在上面的示例中,我尝试使用article
类选择每个select-me
。 (我不能使用普通的类选择器。)
jQuery可以吗?
答案 0 :(得分:2)
.non-selected ~ .select-me {
color: red;
}
答案 1 :(得分:1)
您必须使用~
代替+
,以下所有元素都将匹配
例如,
article.non-selected ~ article.select-me{} /* will select all articles having .select-me class that are siblings but after a article having the .non-selected element class */
使用jQuery
$('article.non-selected ~ article.select-me')....
答案 2 :(得分:0)
jQuery: LIVE DEMO
$('#nav-below').nextUntil('.dont-select-me') // do something
<子> http://api.jquery.com/nextUntil/ 子>
或使用CSS General sibling combinator (〜):LIVE DEMO
#nav-below ~ article{
background:red;
}