可能であれば、d3 を使用してテーブルを作成します: http://jsfiddle.net/ztGE9/2/
var data = [["Red","Blue","Blue"], ["Red"], ["Blue"], ["Red", "Blue"], ["Red", "Blue", "Red"], ["Red","Red","Red","Red","Blue"]];
var table = d3.select("#container").append("table"),
tbody = table.append("tbody");
var rows = tbody.selectAll("tr")
.data(data)
.enter().append("tr");
var cells = rows.selectAll("td")
.data(function (row) {
var tally = {Red:0,Blue:0};
row.forEach(function(item) {
tally[item]++;
});
return ["rgba(255,0,0,"+ tally["Red"]*0.1 +")",
"rgba(0,0,255,"+ tally["Blue"]*0.1 +")"];
})
.enter()
.append("td")
.text("foo")
.style("background-color", function(d) {
console.log(d);
return d;
});
HTML に既にテーブルがエンコードされている場合は、それぞれのテキストを取得し、td
正規表現を使用して集計できます。データ自体に基づいて選択する必要はありません。ここを参照してください: http://jsfiddle.net/aKtct/。
var tds = document.getElementsByTagName("td"),
forEach = Array.prototype.forEach;
forEach.call(tds, function (td) {
var redMatch = td.textContent.match(/Red/g),
redCt = redMatch && redMatch.length || 0,
blueMatch = td.textContent.match(/Blue/g),
blueCt = blueMatch && blueMatch.length || 0;
var rgba = redCt ? "rgba(255,0,0," + 0.1 * redCt + ");" :
"rgba(0,0,255," + 0.1 * blueCt + ");";
td.style.cssText += "background-color:" + rgba;
})
本当にデータに基づいて要素を選択したい場合は、カスタム データ属性と のような属性セレクターを使用します$("#td[data-something='RedRedRedBlue']")
。