码迷,mamicode.com
首页 > 其他好文 > 详细

树状组织结构-Tree

时间:2015-07-07 12:40:19      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

前端:
 $(function () {
            var nodeAll = "000";
            $(‘#departmentTree‘).tree({ url: ‘getDepartment.ashx‘,
                onClick: function (node) {
                    //$(this).tree(‘toggle‘, node.target);
                    $("#hidSelectednodeId").val(node.id);
                    $("#btnQuery").click();
                },
                onBeforeExpand: function (node) {
                    $(this).tree(‘options‘).url = ‘getDepartment.ashx?depid=‘ + node.id;
                    return true;
                }
            });
        });

 

<ul id="departmentTree" class="ztree"> </ul>

 

树状组织结构-Tree

标签:

原文地址:http://www.cnblogs.com/chenxiulou/p/4626531.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!