gpt4 book ai didi

jquery - 如何在 fancytree jquery 中获取树元数据

转载 作者:太空宇宙 更新时间:2023-11-04 02:57:02 25 4
gpt4 key购买 nike

$("#tree").fancytree({
source: [
{title: "Node 1", key: "1"},
{title: "Folder 2", key: "2", folder: true, children: [
{title: "Node 2.1", key: "3", myOwnAttr: "abc"},
{title: "Node 2.2", key: "4"}
]}
],
...
};

现在如何在节点激活时获取此 myOwnAttr 值?如果可能的话,请给我工作示例而不是书面解决方案。 :)

最佳答案

从树中选择事件节点:

var node = $("#tree").fancytree("getActiveNode");   

data 对象将保存树中的元数据,以获取自定义属性值,您可以这样调用它:

console.log(node.data.myOwnAttr);

引用:https://github.com/mar10/fancytree/wiki/TutorialLoadData#passing-data-with-the-source-option

关于jquery - 如何在 fancytree jquery 中获取树元数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31987613/

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