码迷,mamicode.com
首页 > Web开发 > 详细

jstree高级使用,获取所有选中的值并且所有待选的父级结点值

时间:2014-12-09 17:22:02      阅读:1867      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   使用   sp   

var tree = $("#jstree").jstree({
        "core": {
            "themes": { "responsive": false },
            "check_callback": true,
            ‘data‘: { ‘url‘: function (node) { return ‘/test/jstreejson‘; }, ‘data‘: function (node) { return { ‘parent‘: 1000 }; } }
        },
        "types": {
            "default": { "icon": "fa fa-folder icon-state-warning icon-lg" },
            "file": { "icon": "fa fa-file icon-state-warning icon-lg" }
        },
        //"state": { "key": "demo3" },
        ‘plugins‘: [ "checkbox", "types"]
    }).on("changed.jstree", function (e, data) {
      //改变事件
    }).bind("select_node.jstree", function (e, data) {
    //选中事件
    });

   //获取所有选中的值,并且获取待选的父级值
    function ttt() {
        var idArray = new Array();
        $("#jstree").find(".jstree-checked, .jstree-undetermined ").each(function () {
            idArray.push($(this).closest(‘li‘).attr("id"));
        });
        idArray = idArray.concat($.jstree.reference($("#jstree")).get_selected());
        alert(idArray.join(‘,‘));
    }


做网站,做软件可以找
天马网站建设http://www.tmddd.com/



 

jstree高级使用,获取所有选中的值并且所有待选的父级结点值

标签:style   blog   http   io   ar   color   os   使用   sp   

原文地址:http://www.cnblogs.com/stao/p/4153437.html

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