以下是我尝试http://jsfiddle.net/xBB5x/63/
编辑没有ajax的表格的内容。一旦对servlet进行了完整的编辑,我想发布我的表单。但事实证明,一旦我点击提交按钮,整个编辑的数据就消失了。我的Servlet仍然有旧价值。有什么出路吗?请帮助我,我有点被困在这里。看起来某种方式数据没有保存在DOM中,因为当我检查视图源时,编辑的数据没有被保存。
这是我的表格
<form method="post" action="ProcessTableDataServlet">
<table id="mytable" class="table table-bordered table-condensed">
<tr><th>#</th><th>name</th><th>age</th></tr>
<tr>
<td>1</td>
<td><a href="#" data-pk="1">Mike</a></td>
<td>21</td>
</tr>
<tr>
<td>2</td>
<td><a href="#" data-pk="2">John</a></td>
<td>28</td>
</tr>
</table>
<input type="submit" name="submit" value="submit"/>
</form>`enter code here`