将类应用于每个第三个列表项

发布于 2024-12-12 11:23:24 字数 258 浏览 0 评论 0原文

我有以下脚本。目前,它选择了我列表中的第三个项目,并且没有给它任何余量。问题是它只执行一次,有没有办法让它发生在列表中的每第三个项目上?我尝试使用 .each 但无法让它成功工作。

<script>
$(document).ready(function() {
    $("#contentlist li:eq(2)").css({marginRight: '0'});
});
</script>

I have the following script. At the moment it selects the 3rd item in my list and gives it no margin. The problem is it only does this once, is there a way I can make it happen to every 3rd item in the list? I tried using .each but I couldn't get it to work successfully.

<script>
$(document).ready(function() {
    $("#contentlist li:eq(2)").css({marginRight: '0'});
});
</script>

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

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

发布评论

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

评论(2

过气美图社 2024-12-19 11:23:25

使用 3nnth-child 伪类可以做到这一点。

$( '#contentlist li:nth-child(3n)' ).css({marginRight: '0'});

演示:http://jsfiddle.net/ThinkingStiff/gjvpR/

HTML:

<ul id="contentlist">
    <li>1</li>
    <li>2</li>
    <li>3</li>
    <li>1</li>
    <li>2</li>
    <li>3</li>
</ul>

脚本:

$( '#contentlist li:nth-child(3n)' ).css( {marginLeft: '20px'} );

输出:

< img src="https://i.sstatic.net/vx2Ct.png" alt="在此处输入图像描述">

The nth-child pseudo-class using 3n can do this.

$( '#contentlist li:nth-child(3n)' ).css({marginRight: '0'});

Demo: http://jsfiddle.net/ThinkingStiff/gjvpR/

HTML:

<ul id="contentlist">
    <li>1</li>
    <li>2</li>
    <li>3</li>
    <li>1</li>
    <li>2</li>
    <li>3</li>
</ul>

Script:

$( '#contentlist li:nth-child(3n)' ).css( {marginLeft: '20px'} );

Output:

enter image description here

猫弦 2024-12-19 11:23:25

使用 nth-child CSS 选择器:

$("#contentlist li:nth-child(3n)").css({marginRight: '0'});

演示(使用颜色而不是边距):http: //jsfiddle.net/ambiguously/DRCLF/

Use the nth-child CSS selector:

$("#contentlist li:nth-child(3n)").css({marginRight: '0'});

Demo (with colors instead of margins): http://jsfiddle.net/ambiguous/DRCLF/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文