我有两个text_fields
和一个table
三列。通过单击按钮,我希望将这两个text_field
值添加到前两列中的表中。因此,用户可以text_field
一次又一次地更改值,并通过单击 add 将值添加到下一行button
。
两者text_fields
如下:
<input class="cross-reference-question-value" type="text" style="border: 1px solid gray; ">
<input class="cross-reference-answer-value" type="text" style="border: 1px solid gray; ">
这里是table
<table class="gridView" id="selected_units">
<thead>
<tr class="gridViewHeader">
<th>Question</th>
<th>Answer</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr class="<%= cycle('gridViewclickableRowDialog', 'gridViewAltclickableRowDialog') %>">
<td></td>
<td></td>
<td><a href="#">Delete</a></td>
</tr>
</tbody>
</table>
button_link
是_
<a href="#" , class="button" >hello</a>
谢谢!!