我得到了一行的索引。列数是静态的,所以我知道在哪一列中放置什么,但我想要的是能够使用 onclick 事件处理程序来更改特定单元格中的内容。应用了此 onclick 事件的元素位于表之外,其中包含我要从中复制内容的所有文本输入。一个简单的例子
<table id="table1">
<tr>
<td>SomeText</td>
<td>SomeOtherText</td>
</tr>
<tr>
<td>SomeText2</td>
<td>SomeOtherText2</td>
</tr>
</table>
<div id="box1">
<form>
<input type="text" name="newText"/>
<input type="button" onclick="?" />
</form>
</div>