jtree:如何获取节点待定状态的id



我使用jstree('get_selected',false)来获得我的jstree的选中节点与复选框插件,但结果不包括未确定状态的节点。如何使所有选定的节点包括未确定的节点

最新版本的jtree没有包含get_checked方法,为什么?

谢谢。

jstree版本3确实有get_selected特性,它会给你所有选中的项目

        var selectedElements = $('#treeidhere').jstree("get_selected", true);
        // Iterate over all the selected items
        $.each(selectedElements, function () {
            alert(this.id);
        });

表示未确定节点,

        var checked_ids = [];
        $("#treeidhere").find(".jstree-undetermined").each(function (i, element) {
            alert($(element).closest('.jstree-node').attr("id"));
            checked_ids.push($(element).attr("id"));
        });

相关内容

  • 没有找到相关文章

最新更新