JQuery JSTree - add a ToolTip

后端 未结 7 1369
小鲜肉
小鲜肉 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

    Use the a_attr property from the node to add a title property

    { ..., 
      a_attr : { title: 'my tooltip'} 
    }
    

提交回复
热议问题