-1
我有兩個text_fields
和一個table
三列。通過點擊按鈕,我想要將這兩個text_field
值添加到前兩列中的表中。因此,用戶可以一次又一次更改text_field
值,並通過單擊添加button
將值添加到下一行。如何將文本框中的值添加到JavaScript或jQuery中的表格中?
兩個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>
謝謝!
你試過什麼? –
我是一個非常新手的JavaScript。我仍然在努力爭取。 – Vinay
請刪除downvote。我對JavaScript和學習非常陌生。請不要阻止我。謝謝 – Vinay