JQuery JSTree - add a ToolTip

后端 未结 7 1359
小鲜肉
小鲜肉 2021-01-04 20:14

Is there a way to add a Tooltip to a JSTree node? I would like to display extra information when the user hovers over an element.

I\'m pretty dense when it comes to

7条回答
  •  情歌与酒
    2021-01-04 20:51

    Do create tooltip bind the values with jstree .bind("hover_node.jstree", function(e, data){

                $("#").attr("title",data.node.text);
            });
    

提交回复
热议问题