常用jstl

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:forEach var="boundItem" items="${boundItems}">
    ${boundItem}
</c:forEach>

<c:if test=""></c:if>

<c:choose>

   <c:when test="">    如果
   </c:when>
   
   <c:otherwise>  否则
   </c:otherwise>
  
</c:choose>
<c:url value="/css/"/>
<!--'/'是对于webroot -->
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>

${fn:substring(string, start, end)}
${fn:contains(singlenews.keyword,'ifcontain')}

 

posted @ 2015-06-15 21:26  Xuyung  阅读(114)  评论(0编辑  收藏  举报