我创建了一个表,在引用“http://stackoverflow.com/questions/9045940/dynamically-adding-table-row”时,每当我进入表的最后一行时,我需要在表中添加另一行动态底部,这是我尝试过的代码:
<table id="myTable" style="table-layout:auto">
<tr>
<td><input type="text" onblur="addRow('myTable')" /></td>
<td><input type="text"/></td>
<td><input type="text"/></td>
</tr>
</table>
和javascript如下:
<script>
function addRow()
{
//add a row to the rows collection and get a reference to the newly added row
var newRow = document.all("myTable").insertRow();
var oCell = newRow.insertCell();
oCell.innerHTML = "<input type='text' onblur='addRow();'>";
oCell = newRow.insertCell();
oCell.innerHTML = "<input type='text' name='title'>";
oCell = newRow.insertCell();
oCell.innerHTML = "<input type='text' name='title'>";
}
</script>
但是,这里在表格顶部添加了一个新行,我该怎么办?