5

我想打破列表中的每三个项目,并为那个孩子添加一个类;

<ul>
    <li>1</li>
    <li>2</li>
    <li>3</li><!--target list item-->
    <li>4</li>
    <li>5</li>
    <li>6</li><!--target list item-->
    <li>7</li>
</ul>

任何的想法?

4

6 回答 6

7

您应该使用 nth-child 伪选择器

$("ul li:nth-child(3n)").addClass("break-here");
于 2012-04-14T15:15:01.827 回答
5

有一个 CSS 伪选择器:

:nth-child(xn+y)

选择从 开始的每个x孩子y,因此在您的情况下x = 3y = 1(默认值)

$('li:nth-child(3n)').addClass(...);

演示在http://jsfiddle.net/8WDK4/

请参阅http://www.w3.org/TR/selectors/#nth-child-pseudo示例

于 2012-04-14T15:14:59.487 回答
0
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

<ul>
    <li>1</li>
    <li>2</li>
    <li>3</li><!--target list item-->
    <li>4</li>
    <li>5</li>
    <li>6</li><!--target list item-->
    <li>7</li>
</ul>

<script type="text/javascript">
i = 0;
$.each($("li"), function(key,value) {
    i++;
    if (i % 3 == 0) {
        //Do things
    }

})
</script>
于 2012-04-14T15:18:14.330 回答
0
$("li")​.each(function(index,item){
    console.debug(index)
    if(index % 3 == false){
        $(this).addClass("newClass");
    }
})​

这将是诀窍

http://jsfiddle.net/TYuAn/

于 2012-04-14T15:19:03.417 回答
0

另一种没有伪选择器的解决方案

collection.each(function(i, item){
    if(! i%3) {
        $(item).addClass('c');
    }
});
于 2012-04-14T15:22:23.523 回答
0
$('ul li').each(function(i,e){
  $(e).eq((i+1)%3).addClass('red');
});

演示 jsbin

于 2012-04-14T15:44:40.317 回答