gpt4 book ai didi

jquery - 让 nth-child 在 IE8 及更低版本中工作

转载 作者:太空宇宙 更新时间:2023-11-03 20:52:51 24 4
gpt4 key购买 nike

我正在使用以下代码:

.c-1:first-child, .c-2:first-child, .c-1:nth-child(4n+1) { margin-left: 0; }

效果很好,但我需要为不支持 nth-child 的浏览器(如 IE8)模仿它。

我试过这段 jQuery 代码来添加一个类,但没有任何反应,这段代码正确吗?

// Support nth child in IE8
$('.c-1:first-child').addClass('remove');
$('.c-2:first-child').addClass('remove');
$('.c-1:nth-child(4n+1)').addClass('remove');

最佳答案

您可以使用 jQuery 的 .eq(<index>)为此。

例如:

$('.c-1').eq(0).addClass('remove');

关于jquery - 让 nth-child 在 IE8 及更低版本中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13990173/

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