Jquery 添加 +或减去类选择器

发布于 2024-12-11 01:48:58 字数 321 浏览 0 评论 0原文

我用来

<script>
$("#a-slots-16-history div:nth-child(odd)").addClass(function() {
    return "slick-toggle" + $(this).index();
});
</script>

给我网站上的每个其他 div 赋予一个值,因此第三个 div 将具有 .slick-toggle-2 类(因为 0 是一个值),

但是我想操纵它来获取前一个 div 的值为 -1,因此实际上第三个 div 的类为 .slick-toggle-1

I'm using

<script>
$("#a-slots-16-history div:nth-child(odd)").addClass(function() {
    return "slick-toggle" + $(this).index();
});
</script>

to give a value to every other div on on my website so the 3rd div will have the class .slick-toggle-2 (as 0 is a value)

however i want to manipulate this to take the numeric value of the previous div so -1 from the value so in fact the 3rd div would have the class .slick-toggle-1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋凉 2024-12-18 01:48:58

如果我正确理解你的问题..为什么不直接从 $(this).index() 返回的整数中减去 1 呢?

<script>
    $("#a-slots-16-history div:nth-child(odd)").addClass(function() {
        return "slick-toggle" + ($(this).index() - 1);
    });
</script>

If I understood your question correctly.. why not just subtract 1 from the integer returned by $(this).index()?

<script>
    $("#a-slots-16-history div:nth-child(odd)").addClass(function() {
        return "slick-toggle" + ($(this).index() - 1);
    });
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文