gpt4 book ai didi

javascript - 让第一个 child 和最后一个 child 在 IE8 中工作

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

在我的元素中,我试图使用 selectivizr 使下面的 css 在 IE8 中工作

thead>tr:first-child>th:last-child {
color: red;
}
tbody>tr:first-child>td:last-child {
color: red;
}

Selectivizr 中所述网站,我在 JSFiddle 的“外部资源”中添加了以下代码.

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<!--[if (gte IE 6)&(lte IE 8)]>
<script type="text/javascript" src="https://github.com/keithclark/selectivizr/blob/master/selectivizr.js"></script>
<noscript><link rel="stylesheet" href="[fallback css]" /></noscript>
<![endif]-->

我仍然无法让 first-childlast-child 伪选择器在 IE8 中工作。

我正在使用以下代码将所有版本的 IE 切换到 IE8。 (仅供引用)。

<meta http-equiv="X-UA-Compatible" content="IE=8" >

最佳答案

该选择器在 IE8 中不支持,因此您可以为第一个和最后一个元素分配 id 或特殊类。例如:

<tr class="thisSection">
<td class="customClass firstTD">1</td>
<td class="customClass">2</td>
<td class="customClass">3</td>
<td class="customClass lastTD">4</td>
</tr>

关于javascript - 让第一个 child 和最后一个 child 在 IE8 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17038262/

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