gpt4 book ai didi

JQuery 每 6 个 LI 添加一个类

转载 作者:行者123 更新时间:2023-12-01 02:33:27 26 4
gpt4 key购买 nike

我的 jquery 代码似乎有问题。

我想在第 1 轮添加一个类,然后每 6 个添加一个类...我得到第 1 类和第 6 类,但在第三轮中它在第 11 类而不是在第 1 类中添加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; }

最佳答案

这应该适合你:

$('ul li:first, ul li:nth-child(6n)').addClass("red").text("Here");

关于JQuery 每 6 个 LI 添加一个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10602197/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com