标签使用

1. 使用c标签

导入:<%@ taglicprefix=”c” uri=”http://java.sun.com/jsp/jstl/core” %>

    使用:<c:forEach items=”${ requestScope.productlist}” var=”pe”>  --items list    var pe

                            ${ requestScope} –el表达式

                            <tr>

                                   <td>

                                          ${pe.proId}

                                   </td>

                                   ··· ···

    </tr>

类似于遍历 list(items),pe为var,每次遍历的对象

你可能感兴趣的:(标签使用)