gpt4 book ai didi

html - 有没有办法让 ie8 中的第 nth-child() 工作

转载 作者:太空宇宙 更新时间:2023-11-04 13:09:20 25 4
gpt4 key购买 nike

我在我的站点中使用了 nth-child()(“奇数”和“偶数”),

在除 ie8 之外的所有浏览器中都可以正常工作,无需使用任何 js 或 jquery。

我们可以让这些伪类在 ie8 中工作吗?

(我不应该使用任何 js 或 Jquery)

提前致谢:)

请提出建议。

我的代码是这样的,

.row-strip{
float: left;
min-height: 1px;
padding: 0px 3px;
&:nth-child(even){
background-color: @tableRowZebraBackgroundColor;
}
&:hover{
background-color: @tableRowHoverBackgroundColor;
cursor: pointer;
}

能否请您详细说明如何为 ie8 完成此操作,使用,

var childnumber = document.querySelectorAll('.row-strip:nth-child(3)');

最佳答案

是的,您可以使用 querySelectorAll,它在 IE8 中运行良好。

var childnumber3 = document.querySelectorAll('div:nth-child(3)');

关于html - 有没有办法让 ie8 中的第 nth-child() 工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24804273/

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