0

我创建了一个表,在引用“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>

但是,这里在表格顶部添加了一个新行,我该怎么办?

4

1 回答 1

2

改变var newRow = document.all("myTable").insertRow();

var newRow = document.all("myTable").insertRow(-1);

另外,在您的onblur事件中,为什么在addRow函数不带任何参数的情况下将参数传递给函数?

于 2012-06-07T06:17:59.380 回答