How to change icon in jstree?

后端 未结 10 1915
心在旅途
心在旅途 2021-02-01 16:25

I have the following code:

$(\'.wpFolders.co_files\').bind(\'select_node.jstree\', function (event, data) {
            getFileById(data.args[0].hash.replace(\'#         


        
10条回答
  •  生来不讨喜
    2021-02-01 16:51

    try this code:

    lst_item = [];
    $('#city_tree li').each(function(){ lst_item.push($(this).attr('id')); });
    $('#city_tree').jstree(true).set_icon(lst_item, "/static/global/plugins/jstree/province.png");
    

提交回复
热议问题