1

我有一个表,它具有某些属性,并且在每行的最后一列中有一个按钮。

         <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。那么如何实现相同的目的以便我可以检索特定行的值呢?

4

1 回答 1

3

在页面中放置一些隐藏字段以携带选定的行数据。

单击按钮时,使用 javascript 使用单击的行数据设置这些隐藏字段。

并提交表格。

试试这个http://jsfiddle.net/LBJWQ/7/

这是 JSP & Servlets 101。你也应该阅读 HTML 和 Javascript。

于 2012-08-20T08:31:00.803 回答