使用 jquery 作为 css nth child 的替代品
我正在使用以下 css 创建具有棋盘背景的列表项(每个其他列表项都有灰色背景,它会移动每一行以创建棋盘图案:
li:nth-child(8n+2), li:nth-child(8n+4), li:nth-child(8n+5), li:nth-child(8n+7) {
background-color:grey;
}
有没有办法使用比 css3 更支持的 jquery 来做到这一点?谢谢
I am using the following css to create list items with a chckerboard background ( every other list item has a grey background, which shift every row to create a checkerboard pattern:
li:nth-child(8n+2), li:nth-child(8n+4), li:nth-child(8n+5), li:nth-child(8n+7) {
background-color:grey;
}
Is there way I can do this using jquery that is more supportive than css3? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的回答:是的!
只需将它用作
document.ready
中的选择器,它就可以跨浏览器工作,如下所示:注意:这在存在的元素上运行当它运行时,如果您动态添加/删除元素,只需调用相同的选择器/
.css()
即可。不过,在这种情况下,我建议使用一个类,因此您可以使用.addClass('myClass')< 来代替
.css('background-color','grey')
/代码>Short answer: yes!
Just use it as a selector inside a
document.ready
and it'll work cross-browser, like this:Note: this runs on the elements present when it's run, if you're dynamically adding/removing elements, just call the same selector/
.css()
then. I'd recommend a class in this case though, so instead of.css('background-color','grey')
, you'd have.addClass('myClass')