jquery.treeview的使用很简单,将treeview的样式文件及js先拷入项目相应目录中,需要注意的是,p_w_picpaths文件要和jquery.treeview.css同目录,当然你也可以直接修改css样式中的路径。




   目录树的示例如下:

   关键的js代码是级联操作,当我选择某一个节点时,要将相应的子节点及祖先节点进行相应选择,当取消选择时,要先判断祖先节点下面是否还有选中的项,如有没有,则也要取消祖先节点的选择。

$(".content input[type='checkbox'][name='cks']").click(function() {
    //子孙目录
    var c = $(this).parent().find("input");
    var b = $(this).attr('checked');$(this).attr('checked', b);
    c.each(function() {
        $(this).attr('checked', b);
    });
               
    //祖先目录
    var count = 0;
    var p = $(this).parents('li');//所有祖先目录
    p.each(function(i) {
        if (i===0){
        }else{
            var o = $(this).find('input');
            if (count) {
                o[0].checked = true;
            } else {
                o[0].checked = false;
            }
        }
        var ulChildren = $(this).parent('ul').find('input');
        count = 0;
        ulChildren.each(function() {
            if ($(this).attr('checked')) {
                count++;//当前节点的父结点被选中个数
            }
        });
    });
});