How to update jstree node values without reload

前端 未结 6 2080
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-07 07:11

I have a jstree that I created with the following code:

$(\'#mytree\').jstree({\"core\": { \"data\" : value
                             , \"themes\" : { \"dots\         


        
6条回答
  •  梦如初夏
    2021-02-07 07:33

    You can refresh node by this

    $('#treeView').jstree(true).refresh_node("node_id_here")
    

提交回复
热议问题