我正在尝试从我的控制器访问用户在表中引入的值。
该表不是模型的一部分,视图源代码类似于:
<table id="tableSeriales" summary="Seriales" class="servicesT" cellspacing="0" style="width: 100%">
<tr>
<td class="servHd">Seriales</td>
</tr>
<tr id="t0">
<td class="servBodL">
<input id="0" type="text" value="1234" onkeypress = "return handleKeyPress(event, this.id);"/>
<input id="1" type="text" value="578" onkeypress = "return handleKeyPress(event, this.id);"/>
.
.
.
</td>
</tr>
</table>
如何从控制器获取这些值(1234、578)?
接收表单集合不起作用,因为它没有得到表格......
谢谢你。