我有这样一张桌子
<table><tr>
<td>some code</td>
<td>some code</td>
<td>some code</td>
</table>
如何将其修改为
<table><tr>
<td>some code</td>
<tr><td>some code</td>
<tr><td>some code</td>
</table>
使用Javascript?
答案 0 :(得分:0)
应该工作:
var table = document.getElementById("tableid");
var oldrow = table.getElementsByTagName("tr")[0];
var cells = oldrow.childNodes;
while (cells.length>0) {
var newrow = document.createElement("tr");
table.appendChild(newrow);
newrow.appendChild(cells[0]);
}
table.removeChild(oldrow);