将类应用于每个第三个列表项
我有以下脚本。目前,它选择了我列表中的第三个项目,并且没有给它任何余量。问题是它只执行一次,有没有办法让它发生在列表中的每第三个项目上?我尝试使用 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
3n
的nth-child
伪类可以做到这一点。演示:http://jsfiddle.net/ThinkingStiff/gjvpR/
HTML:
脚本:
输出:
< img src="https://i.sstatic.net/vx2Ct.png" alt="在此处输入图像描述">
The
nth-child
pseudo-class using3n
can do this.Demo: http://jsfiddle.net/ThinkingStiff/gjvpR/
HTML:
Script:
Output:
使用
nth-child
CSS 选择器:演示(使用颜色而不是边距):http: //jsfiddle.net/ambiguously/DRCLF/
Use the
nth-child
CSS selector:Demo (with colors instead of margins): http://jsfiddle.net/ambiguous/DRCLF/