<c:> </c:>

<c:if test="${topicInfo.conferenceSystemId != '1' and topicInfo.conferenceSystemId != '2'}">
                
</c:if>
<c:if test="${topicInfo.conferenceSystemId == '1' or topicInfo.conferenceSystemId == '2'}">
                
</c:if>
<c:forEach items="${ typeList}" var="item" varStatus="status">
        <c:if test="${ status.index == 0}">
               <option value=${item.dictValue } selected="selected">${item.dictLable }</option>
        </c:if>
        <c:if test="${ status.index != 0}">
               <option value=${item.dictValue } >${item.dictLable }</option>
        </c:if>
</c:forEach>
原文地址:https://www.cnblogs.com/lijianda/p/9889684.html