JSP---网上商城->修改购物车购物项的数量

Buy.jsp

//修改购物车商品的数量
    if (action != null && action.equals("update")) {
        Iterator<CartItem> it = c.getItems().iterator();
        while (it.hasNext()) {
            CartItem item = it.next();
            int count = Integer.parseInt(request.getParameter("p"
                    + item.getProduct().getPid()));
            item.setCount(count);
        }
    }


<form action="Buy.jsp" method="get">
            <input type="hidden" name="action" value="update" />
...
<td>
                        <input type="text" name="<%="p" + ci.getProduct().getPid()%>"
                            value="<%=ci.getCount()%>" size="3" /><!--每个购物项的数量文本框-->
</td>

...
<td colspan="7">
                        <a href="Confirm.jsp">下单</a>&nbsp;
                        <a href="javascript:document.forms[0].submit()">修改</a>
                    </td><!--采用链接的方式提交表单-->

 

posted @ 2014-12-04 10:59  框框A  阅读(1858)  评论(0编辑  收藏  举报