2

このjqueryコードに問題があるようです。

クラスを 1 番目に追加し、次に 6 番目ごとに追加したい

  • の... 1 番目と 6 番目を取得していますが、3 番目のラウンドでは 12 番目の代わりに 11 番目を実行しています。

    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 に答える