gpt4 book ai didi

jquery - jstree:如何获取节点的未确定状态的id

转载 作者:行者123 更新时间:2023-12-01 06:46:47 24 4
gpt4 key购买 nike

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

最新版本的jstree不包含'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"));
});

关于jquery - jstree:如何获取节点的未确定状态的id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24566261/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com