JQuery JSTree - add a ToolTip

后端 未结 7 1337
小鲜肉
小鲜肉 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 21:03

    $("#my_tree).bind("hover_node.jstree", function (e, data) 
    {
        alert(data.rslt.obj.attr("id"));
    })
    

提交回复
热议问题