java 对应实体类属定义

public class AccoSysmanResource{
   
    /**
     * 资源类型
     */
    private Integer resourceType;
    
    /**
     * 权限名称
     */
    private String name;
    
    /**
     * 权限描述
     */
    private String description;
    
    /**
     * 排序
     */
    private Integer level;
   
    /**
     * 子节点
     */
    private List<AccoSysmanResource> subResource;
    
    private Integer pid;

private Integer deleteFlag;

private Integer pMenuId;
    
    private Date createtime;

}

jsp页面循环遍历属性结构代码

 <!-- tree_start -->

 <div class="col-md-3">
                  <div class="tab-content">
                    <div role="tabpanel" class="tab-pane active" id="sour">
                        <div class="data-div">
                            <div class="row tableHeader">
                                <div class="col-lg-11 col-md-11 col-sm-11 col-xs-11">
                                  <label>
                                          <input name="checkname" type="checkbox" value="0" onclick="checkboxById(this,'biz')"/>菜单 全选
                                     </label>
                                </div>
                            </div>
                            <div class="tablebody">
                                <div id="collapseSystem" class="collapse in" aria-expanded="true">
                                
                                <!-- 第一层 start -->
                                <c:forEach items="${bizList}" var="menu" varStatus="rows">
                                    <div class="row">
                                        <div class="col-lg-11 col-md-11 col-sm-11 col-xs-11 levl3" role="button" >
                                            <c:if test="${empty menu.subResource}" var="biz_not_empty_subResource">
                                                  <span class="glyphicon glyphicon-pushpin"></span>
                                              </c:if>
                                              <c:if test="${not biz_not_empty_subResource}">
                                                  <i id="down_biz_${rows.index}" class="glyphicon glyphicon-hand-down" style="display: ${rows.index==0 ? 'none':''};"></i>
                                                  <i id="up_biz_${rows.index}" class="glyphicon glyphicon-hand-up" style="display: ${rows.index!=0 ? 'none':''};"></i>
                                              </c:if>
                                              <label>
                                                  <input name="bizMenuId" type="checkbox" value="${menu.pid}" id="biz_${rows.index}" onclick="checkboxById(this,'biz_${rows.index}_')"/>
                                                 </label>
                                                 <span role="button" data-toggle="collapse" data-parent="#accordion" href="#collapse_biz_${rows.index}" aria-expanded="true" onclick="dom('biz_${rows.index}')">${menu.name}</span>
                                        </div>
                                    </div>
                                    
                                    <!-- 第二层 start -->
                                    <c:if test="${not biz_not_empty_subResource}">
                                    <div id="collapse_biz_${rows.index}" class="${rows.index==0 ? 'collapse in':'collapse'}" aria-expanded="${rows.index==0 ? 'true':'false'}">
                                    <c:forEach items="${menu.subResource}" var="m" varStatus="i">
                                        <div class="row" style="border-top:1px solid #E3E8EE;">
                                            <div class="col-lg-11 col-md-11 col-sm-11 col-xs-11 levl3">
                                                <label>
                                                      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                                                      <input name="bizMenuId"  value="${m.pid}" type="checkbox" id="biz_${rows.index}_${i.index}" onclick="checkboxById(this,'biz_${rows.index}_${i.index}_')" />
                                                      <span role="button" data-toggle="collapse" data-parent="#accordion" aria-expanded="true"  href="#collapse_biz_${rows.index}_${i.index}" >
                                                      <c:if test="${empty m.subResource}" var="biz_not_empty_m_subResource">
                                                      |--${m.name}
                                                      </c:if>
                                                      <c:if test="${not biz_not_empty_m_subResource}">
                                                          <span class="glyphicon glyphicon-triangle-bottom"></span>${m.name}
                                                      </c:if>
                                                      </span>
                                                     </label>
                                            </div>
                                        </div>
                                        
                                        <!-- 第三层start -->
                                        <c:if test="${not biz_not_empty_m_subResource}">
                                            <div id="collapse_biz_${rows.index}_${i.index}" class="collapse in" aria-expanded="true" >
                                            <c:forEach items="${m.subResource}" var="m2" varStatus="i3">
                                                <div class="row" style="border-top:1px solid #E3E8EE;">
                                                    <div class="col-lg-11 col-md-11 col-sm-11 col-xs-11 levl3" >
                                                        <label>
                                                              &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                                                              <input name="bizMenuId"  value="${m2.pid}" type="checkbox" id="biz_${rows.index}_${i.index}_${i3.index}" onclick="childCheckboxById(this,'biz_${rows.index}_${i.index}_${i3.index}')"  />
                                                              <span>|----${m2.name}</span>
                                                             </label>
                                                    </div>
                                                </div>
                                            </c:forEach>
                                            </div>
                                        </c:if>
                                        <!-- 第三层end -->
                                        
                                    </c:forEach>
                                    </div>
                                    </c:if>
                                    <!-- 第二层 end -->
                                    
                                </c:forEach>
                                <!-- 第一层 end -->
                               </div>
                            </div>
                            
                        </div>
                       </div>
                 </div>
              </div>
              <!-- tree_end -->

js文件(必须先导入Jquery.js 文件)

/** 全选 */
function checkboxAll(obj, cheName) {
    if ($(obj).prop("checked")){
    
        $("input[name='" + cheName + "']").prop("checked", true);
    } else {
     $("input[name='" + cheName + "']").prop("checked", false);
    }
}

/**cheId开头的Id全选*/
function checkboxById(obj, cheId){
    var parent2=cheId.substr(0,cheId.lastIndexOf('_'));
    var parent1=parent2.substr(0,parent2.lastIndexOf('_'));
    if ($(obj).prop("checked")){
        $("input[id='" + parent1 + "']").prop("checked", true);
        $("input[id^='" + cheId + "']").prop("checked", true);
    } else {
        $("input[id^='" + cheId + "']").prop("checked", false);
        var parent3=parent1+"_";
        var index=0;
        $("input[id^='"+parent3+"']:checked").each(function(){
            index++;         
        });
        if(index==0){
            $("input[id='" + parent1 + "']").prop("checked", false);
        }
    }
}
/**三级节点点击触发**/
function childCheckboxById(obj, parentCheId){
    var parent2=parentCheId.substr(0,parentCheId.lastIndexOf('_'));
    var parent1=parent2.substr(0,parent2.lastIndexOf('_'));
    if ($(obj).prop("checked")){
        $("input[id='" + parentCheId + "']").prop("checked", true);
        $("input[id='" + parent2 + "']").prop("checked", true);
        $("input[id='" + parent1 + "']").prop("checked", true);
    } else {
        $("input[id='" + parentCheId + "']").prop("checked", false);
        var parent3=parent2+"_";
        var index=0;
        $("input[id^='"+parent3+"']:checked").each(function(){
            index++;         
        });
        if(index==0){
            $("input[id='" + parent2 + "']").prop("checked", false);
        }
        var parent4=parent1+"_";
        var index2=0;
        $("input[id^='"+parent4+"']:checked").each(function(){
            index2++;         
        });
        if(index2==0){
            $("input[id='" + parent1 + "']").prop("checked", false);
        }
    }
}

Tree菜单 复选框选中控制DEMO的更多相关文章

  1. 关于textjs的tree带复选框的树

    通过查阅一些资料和自己之前了解到的一些相关知识,有时项目中需要用到.话不多说,先看一下效果图: 我写的这人员选择的树,主要是改写了TreePanel,如下代码: ExtendTreePanel.js ...

  2. jquery复选框 选中事件 及其判断是否被选中

    jquery复选框 选中事件 及其判断是否被选中 (2014-07-25 14:03:54) 转载▼ 标签: jquery复选框选中事件 分类: extjs jquery   今天做了 显示和不显示密 ...

  3. Web前端之复选框选中属性

    熟悉web前端开发的人都知道,判断复选框是否选中是经常做的事情,判断的方法很多,但是开发过程中常常忽略了这些方法的兼容性,而是实现效果就好 了.博主之前用户不少方法,经常Google到一些这个不好那个 ...

  4. Javascript 统计复选框选中个数

    var checked = document.getElementsByName("checked_c[]"); var checked_counts = 0; for(var i ...

  5. JS复选框选中

    Web前端之复选框选中属性   熟悉web前端开发的人都知道,判断复选框是否选中是经常做的事情,判断的方法很多,但是开发过程中常常忽略了这些方法的兼容性,而是实现效果就好了.博主之前用户不少方法,经常 ...

  6. springMvc接收ajax数组参数,以及jquery复选框选中、反选、全选、全不选

    一.复选框选中.反选.全选.全不选 html代码: <input type='checkbox' name='menuCheckBox' value='10' >苹果 <input ...

  7. Jquery获取当前页面中的复选框选中的内容

    在使用$.post提交数据时,有一个数据是复选框获取数据,所以在当前页面获取到复选框选中的值并提交到后端卡住了一下,解决方法如下: 这两个input就是复选框的内容: str += "< ...

  8. CheckStateChanged(复选框选中状态更改事件)和 CheckedChanged(单选按钮选中状态更改事件)二者区别?

    CheckStateChanged(复选框选中状态更改事件)和 CheckedChanged(单选按钮选中状态更改事件)二者区别: 复选框控件(CheckBox)提供了CheckedChanged控件 ...

  9. bootstrap table 复选框选中后,翻页不影响已选中的复选框

    使用的 jquery版本为 2.1.1 在项目中发现bootstrap table的复选框选中后,翻页操作会导致上一页选中的丢失,api中的 bootstrapTable('getSelections ...

随机推荐

  1. width:100%;与width:auto;的区别

    <div> <p>1111</p> </div> div{ width:980px; background-color: #ccc; height:30 ...

  2. Sublime Text 2 设置tab空格

    打开Sublime Text 2 英文版:选择Preference-defalut 中文版:选择Preference-键绑定-默认 找到"translate_tabs_to_spaces&q ...

  3. display:inline-block会产生空隙

    display:inline-block会产生空隙 解决方法:font-size:0;letter-spacing:-4px

  4. UML大战需求分析——阅读笔记03

    读<UML大战需求分析>有感03 状态机图和活动图在样子比较相似,但状态机图是用来为对象的状态及造成状态改变的事件建模.我们大二学习UML统一建模语言状态机图模块时了解到,UML的状态机图 ...

  5. 获取url中指定的参数

    function GetRequest(name){ var reg = new RegExp("(^|&)"+ name +"=([^&]*)(& ...

  6. SQL2005 表分区亲测

    --增加文件组 alter database Test add filegroup [FG1] go alter database Test add filegroup [FG2] GO alter ...

  7. FABRIC单机开发者模式启动

    在开始之前需要导出一个自定义变量,方便后续操作: export FABRIC=/opt/gopath/src/github.com/hyperledger/fabric/devenv 1.在真机上执行 ...

  8. js获取URL中的参数

    js获取URL中的一些参数的意思 location对象 含有当前URL的信息. 属性 href 整个URL字符串. protocol 含有URL第一部分的字符串,如http: host 包含有URL中 ...

  9. spring 定时任务配置

    1.(易)如何在spring中配置定时任务? spring的定时任务配置分为三个步骤: 1.定义任务 2.任务执行策略配置 3.启动任务 (程序中一般我们都是到过写的,直观些) 1.定义任务 < ...

  10. Dw CS 破解

    据说,CS5的破解也可以用CS6的破解方法,不过可能本人太菜,有所失误,总是不成功,安装成功后,打开总是提示 : 我们无法开始您的Adobe Dreamweaver cs5 subscription ...