我有一个 HTML 表格,我想设置表格特定部分的颜色(分类为“第一”的单元格的边框顶部颜色)。要获得颜色,我需要访问 css 类中的特定值。
例子:
桌子
<table class="tabla">
<caption>Title</caption>
<tr>
<td class="first">A</td>
<td class="first">157</td>
</tr>
</table>
CSS 这是我需要能够获取颜色的类
.color { fill: #95ccee;
background-color: #95ccee;
}
为了实现,我按照以下方式使用 d3.js
var selectTablas = d3.selectAll (".tabla");
selectTablas.selectAll(".first")
.style("border-top-color", "Here the function that will get the color");
该函数应循环数据集,并根据“d”获取不同类的不同值。
这里,扩展代码
http://jsfiddle.net/ploscri/dHYcd/
提前致谢。