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

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/



 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。