EL表达式循环、设置、函数等应用,工作中用到的几个方法

Java代码   收藏代码
  1. <c:forEach items="${menuList}" var="menuItem">  
  2.     <c:set value=",${menuItem.id }," var="id"/>  
  3.     <c:if test="${menuItem.parentId==0 }">  
  4.         <div class="sm-k" id="div${menuItem.id }">  
  5.         <div class="sm-k1">  
  6.             <div class="sm-k4a">  
  7.                 <div class="sm-k4a1"><input name="menu" id="menu${menuItem.id }" type="checkbox" value="${menuItem.id }" <c:if test="${fn:contains(ids, id)}">checked</c:if> οnclick="subSelect('${menuItem.id}')"/></div>  
  8.                 <div class="sm-k4a2">&nbsp;${menuItem.menuName }</div>  
  9.             </div>  
  10.         </div><br />  
  11.         <div class="sm-k4">  
  12.         <c:forEach items="${menuList}" var="subItem">  
  13.             <c:set value=",${subItem.id }," var="subId"/>  
  14.             <c:if test="${subItem.parentId==menuItem.id }">  
  15.                 <div class="sm-k4a">  
  16.                     <div class="sm-k4a1"><input name="subMenu" id="subMenu${subItem.id }" type="checkbox" value="${subItem.id }" <c:if test="${fn:contains(ids, subId)}">checked</c:if> οnclick="menuSelect('${subItem.id}','${menuItem.id }')"/></div>  
  17.                     <div class="sm-k4a2">&nbsp;${subItem.menuName }</div>  
  18.                 </div>  
  19.             </c:if>  
  20.         </c:forEach>  
  21.         </div>  
  22.         </div>  
  23.     </c:if>  
  24. </c:forEach>  

 

Js代码   收藏代码
  1. function subSelect(id){  
  2.       
  3.     if($('#menu'+id).is(':checked')){  
  4.         $('#div'+id+' input').each(function(){  
  5.             $(this).attr("checked","true");  
  6.         });  
  7.     }else{  
  8.         $('#div'+id+' input').each(function(){  
  9.             $(this).removeAttr("checked");  
  10.         });  
  11.     }  
  12.       
  13. }  
  14.   
  15. function menuSelect(id,menuId) {  
  16.       
  17.     if($('#subMenu'+id).is(':checked')){  
  18.         $('#menu'+menuId).attr("checked","true");  
  19.     }else{  
  20.         var c = 0;  
  21.         $('#div'+menuId+' input[name="subMenu"]').each(function(){  
  22.             if($(this).attr("checked")=='checked'){  
  23.                 c =1;  
  24.             }  
  25.         });  
  26.         if(c>0){  
  27.             $('#menu'+menuId).attr("checked","true");  
  28.         }else{  
  29.             $('#menu'+menuId).removeAttr("checked");  
  30.         }  
  31.     }  
  32. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值