A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 xingfeichen 于 2015-9-13 19:55 编辑
  1. <%@page import="com.xingfei.product.Product"%>
  2. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  4. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  5. <html>
  6.   <head>

  7.    
  8.     <title>forEach遍历商品</title>
  9.    

  10.   </head>
  11.   
  12.   <body>
  13.         <table border="1">
  14.                 <tr>
  15.                         <th>商品名称</th>
  16.                         <th>商品数量</th>
  17.                         <th>商品单价</th>
  18.                         <th>商品小计</th>               
  19.                 </tr>
  20.         <%
  21.                 ArrayList<Product> al = new ArrayList<Product>();
  22.                 al.add(new Product("计算机网络",100,20));
  23.                 al.add(new Product("java编程思想",200,80));
  24.                 al.add(new Product("javaWeb开发",20,60));
  25.                 request.setAttribute("products", al);
  26.         %>
  27.         <c:forEach begin="0" end="3" step="1" items="${products}" var="pts" varStatus="vs">
  28.                 <tr>
  29.                         <td>${pts.name}</td>
  30.                         <td>${pts.mount}</td>
  31.                         <td>${pts.price}</td>
  32.                         <td>¥${pts.price*pts.mount}</td>               
  33.                 </tr>
  34.                
  35.         </c:forEach>
  36.                 <tr>
  37.                         
  38.                         <td colspan="3">总计</td>        
  39.                         <td>${pts.price*pts.mount}</td>               
  40.                 </tr>
  41.         </table>
  42.   </body>
  43. </html>
复制代码
怎么计算总价?

zzz.PNG (4.23 KB, 下载次数: 2)

执行结果

执行结果

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马