我在我的站点中使用了 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)');
我是一名优秀的程序员,十分优秀!