由于其中有另一个标签,我在将行添加到 div 标签中的表时遇到了一些问题。
我知道如果我可以更改表的 id 会很好,但是因为它是生成的,所以我无法更改它们。我只能更改包含表格的 div 的 ID。
<!--Adding does not work on this table -->
<h3>Wednesday</h3>
<button type="button" onclick="displayResult('wed')">Insert new row</button>
<div id="wed">
<strong>Even this stops it from adding</strong> <!--This is the problem -->
<table id="myTable" border="1">
<tr>
<td>cell 1</td>
<td>cell 2</td>
</tr>
</table>
<div>
<!--Adding works on this table -->
<h3>Thursday</h3>
<button type="button" onclick="displayResult('thu')">Insert new row</button>
<div id="thu">
<table id="myTable" border="1">
<tr>
<td>cell 1</td>
<td>cell 2</td>
</tr>
</table>
<div>
function displayResult(number) {
var elemList=document.getElementById(number).childNodes;
var table=elemList[1];
var row=table.insertRow(-1);
var cell1=row.insertCell(0);
var cell2=row.insertCell(1);
cell1.innerHTML="New";
cell2.innerHTML="New";
}