el,jstl 判断一个值在不在集合list中

来源:互联网 发布:mac 电源适配器 编辑:程序博客网 时间:2024/05/16 09:00

${fn:contains(functionId,function.id)}

加入头标签

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



functionId  是个集合

function.id 是个值


     <c:forEach var="function"  items="${list}" varStatus="sta">             <tr>                    <td>                    <c:choose>                    <c:when test="${fn:contains(functionId,function.id)}">                    <input class="cb" type="checkbox" checked="checked" />                    </c:when>                    <c:otherwise>                    <input class="cb" type="checkbox"  />                    </c:otherwise>                    </c:choose>                     </td>                    <td>${function.functionName}</td>                    <td>${function.funcUrl}</td>                    <td><fmt:formatDate value="${function.creationTime}" pattern="yyyy-MM-dd HH:mm:ss" /></td>                    <td>                    <c:if test="${function.isStart== 1}"></c:if>               <c:choose>               <c:when test="${function.isStart== 1}"> 启用 </c:when>      <c:otherwise> 关闭</c:otherwise> </c:choose>                                        </td>                 </tr>                                       </c:forEach>





阅读全文
0 0
原创粉丝点击