2

我似乎对这个 jquery 代码有问题。

我想在第一个然后每 6 个添加一个类

  • 的......我得到了第 1 和第 6,但在第三轮中,它在第 11 轮而不是第 12 轮。

    Here is the code:Query:
    
    $('ul li:nth-child(5n+1)').addClass("red").text("Here");
    
    Here is the css:
    
    li { background-color:blue; }
    .red{ background-color: red; }
    
  • 4

    1 回答 1

    7

    这应该适合你:

    $('ul li:first, ul li:nth-child(6n)').addClass("red").text("Here");
    
    于 2012-05-15T13:53:25.890 回答