较旧的IE浏览器的nth-child的替代
是否有替代方法可以将目标元素nth-child()
用于较旧的IE浏览器?
Javascript(非jquery)也足够了。
编辑:不能将其他库添加到页面。
回答:
您可以使用jQuery的:nth-child()选择器;
$("li:nth-child(even)") // target even li's$("li:nth-child(odd)") // target odd li's
$("li:nth-child(5n)") // target the fifth li
以上是 较旧的IE浏览器的nth-child的替代 的全部内容, 来源链接: utcz.com/qa/413188.html