zoukankan      html  css  js  c++  java
  • <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>
  • 相关阅读:
    NOIP提高组2004 合并果子题解
    RMQ问题之ST算法
    7.18考试
    7.18
    7.17
    7.16
    7.15
    7.14
    7.13考试
    7.13
  • 原文地址:https://www.cnblogs.com/lijianda/p/9889684.html
Copyright © 2011-2022 走看看