JSP JSTL EL标签使用

 

一.配置 JSTL

包括两个 JAR文件, jstl.jar standard.jar

JSP页面最上面引入:

<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

<%@taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql"%>

<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>

 

 

代码片段

${requestScope.dataList}可以直接写为${dataList}

接受session 用 ${sessionScope.dataList}

   <c:forEach items="${requestScope.dataList}" var="data">

       <tr>

       <td><input type="checkbox" name="select"id="select" value=<c:out value="${data.id}"/> /></td>

       <td><c:out value="${data.friendName}" /></td>

       <td><c:out value="${data.friendTell}" /></td>

       <td><c:out value="${data.friendAddr}" /></td>

       <td><c:out value="${data.friendRemark}" /></td>

      

      

       </tr>

    </c:forEach>

 


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