How to change icon in jstree?

后端 未结 10 1916
心在旅途
心在旅途 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:28

    The following script works for me:

    $('div#jstree').on('ready.jstree click', function (e, data) {
            $('i.jstree-icon').removeClass('jstree-themeicon jstree-icon').addClass('fa fa-lg fa-user');
        });
    

提交回复
热议问题