一、截取字符串
第一步 导入包:<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
第二步:${fn:substring(str,0,10)}
二、标签循环判断
<select id="dataSourceId" name="dataSourceId">
<c:forEach items="${dataSourceConfigList}" var="dataSource"> <c:choose> <c:when test="${dataSource.id eq datasource_id}"> <option value="${dataSource.id}" selected="true">${dataSource.name}</option> </c:when> <c:otherwise> <option value="${dataSource.id}">${dataSource.name}</option> </c:otherwise> </c:choose> </c:forEach>
</select>
三、if语句
3.1 字符串是否相等
<c:if test="${rows.theSame=='false'}"> style="color:red" </c:if>
3.2 变量是否存在
<c:if test="${not empty 变量名称}"> 代码..... </c:if>