zoukankan      html  css  js  c++  java
  • <c:forEach <c:forTokens

     <c:if test="${roleStr!='' }">
      <c:forEach items="${flowList}" var="l">
      <c:if test="${l.businessName=='银企对账' }">
        <input type="text" name="insertRole" id="insertRole" style="display:none">
        <c:forEach items="${roleList}" var="r">
         <c:set var="isGet" value="0"/>
         <c:forTokens var="token" items="${l.flowSerial }" delims=";">
          <c:if test="${r.roleId==token}">
            <c:set var="isGet" value="1"/>
          </c:if>
               </c:forTokens>
               <c:if test="${isGet=='1' }">
                <input type="checkbox" name="operatorRole" value="${r.roleId}"  onclick="insertRoleStr(this);" checked="checked">${r.roleName}    &nbsp;&nbsp;
         </c:if> 
               <c:if test="${isGet=='0' }">
                <input type="checkbox" name="operatorRole" value="${r.roleId}"  onclick="insertRoleStr(this);">${r.roleName}&nbsp;&nbsp;    
               </c:if>            
        </c:forEach>     
         </c:if> 
     </c:forEach>
     </c:if> 

  • 相关阅读:
    linux查看cpu、内存信息
    PHP之路,Day1
    Zabbix3.0完整部署
    linux时间同步
    nginx日志切割脚本
    Rsync+sersync文件实时同步
    阿里云自动挂载云盘脚本
    nginx不支持pathinfo 导致thinkphp出错解决办法
    VIM选项配置说明
    vagrant 本地添加box 支持带版本号
  • 原文地址:https://www.cnblogs.com/yangy608/p/2282007.html
Copyright © 2011-2022 走看看