我正在动态地向表中添加新行,使用以下代码:
tbody = document.getElementById('tbody');
tr = tbody.insertRow(-1);
tr.id = 'last';
th = tr.insertCell(0);
td = tr.insertCell(1);
但实际上我得到的是两个td
个细胞。我想要一个th
,你可以看到。
它表示tagName
属性不可更改。
我该怎么做?
我是否需要使用{常规'方法,例如createElement
和appendChild
?
答案 0 :(得分:5)
答案 1 :(得分:0)
我所做的是先定义th,例如TableHeaderRow thr = new TableHeaderRow(); 添加单元格,然后将其添加到表格中。
答案 2 :(得分:0)
我知道它是这样工作的:
var table = d3.select("#table");
table.html("");
head = table.append("tr");
head.append("th").text("column_header_1");
head.append("th").text("column_header_2");
chartData.forEach(function (obj) {
row = table.append("tr");
row.append("td").text(obj.datapoint_1);
row.append("td").text(obj.datapoint_2);
答案 3 :(得分:-1)
一种快速而有效的方法是在innerHtml中使用<b></b>
标签
tbody = document.getElementById('tbody');
tr = tbody.insertRow(-1);
tr.id = 'last';
td = tr.insertCell(1);
th = tr.insertCell(0);
th.innerHtml = '<b>th cell1</b>
th = tr.insertCell(1);
th.innerHtml = '<b>th cell2</b>
//and so on