gpt4 book ai didi

css - 与 IE-8 兼容的部分彩色表格单元格

转载 作者:行者123 更新时间:2023-11-28 17:35:36 24 4
gpt4 key购买 nike

请访问:Plnkr.co

<table id="customers">
<tbody>
<tr>
<th>Sales</th>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>12%</td>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
.... ....
</tbody>
</table>

我需要根据百分比在“销售”列的单元格中部分填充颜色,并兼容 IE-8。

请帮忙。提前致谢。

最佳答案

您需要使用 jquery 来实现此目的。看看下面的jquery。我正在获取 td 值并将其分配给具有背景颜色的 div。

 $(document).ready(function(){    
$("#customers tr td:first-child").each(function(){
var textval = "<div class='bg' style='width:"+$(this).html()+"'>&nbsp;</div>";
$(this).html(textval);
});
});

DEMO

关于css - 与 IE-8 兼容的部分彩色表格单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25136238/

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