gpt4 book ai didi

javascript - 如何使用jstree添加文件图标?

转载 作者:行者123 更新时间:2023-12-01 02:22:20 27 4
gpt4 key购买 nike

下面有以下代码,需要在单击 add_file ($("#treeFile").jstree("create")); 时向 jstree 文件结构添加 file.png 图标;

  $("#treeFile").jstree({
"plugins" : ["themes","html_data","ui","crrm","types"],
"types" : {
"max_depth" : -2,
"max_children" : -2,
"valid_children" : [ "drive" ],
"types" : {
"default" : {
"valid_children" : "none",
"icon" : { "image" : "/tree/_demo/file.png"}
}
}
}
})
.bind("select_node.jstree", function (event, data) {

});

$("#treeMenu li").click(function()
{
if($(this).text() == "add_file")
{
$("#treeFile").jstree("create");

}else if($(this).text() == "add_folder")
{
$("#treeFile").jstree("create");

}else if($(this).text() == "rename")
{
$("#treeFile").jstree("rename");

}else if($(this).text() == "remove")
{
$("#rootNode").jstree("remove");
}else
{}

最佳答案

向节点添加 'icon': 'jstree-file' 属性

关于javascript - 如何使用jstree添加文件图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13015133/

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