我有一个表,它具有某些属性,并且在每行的最后一列中有一个按钮。
<tr>
<td>B001</td>
<td>The Catcher In The Rye</td>
<td>199</td>
<td><select>
<option>1</option>
<option>2</option>
<option>3</option>
</select></td>
<td><button>Add To Cart</button></td>
</tr>
我必须在我正在使用的 Servlet 中分别获取 id、name、price、quantity 中的整个行值。我怎么做?
使用表单我们可以做一些类似的事情 -
String name = request.getParameter("LoginName");
但是这里没有表的 id。那么如何实现相同的目的以便我可以检索特定行的值呢?