Twitter Bootstrap Tooltip数据选择器?

时间:2012-11-24 20:58:13

标签: javascript jquery css3 twitter-bootstrap

Twitter's Bootstrap Tooltip中使用的数据选择器选项是什么?描述如下......

If a selector is provided, tooltip objects will be delegated to the specified targets.

但我不明白其目的或如何使用它。

1 个答案:

答案 0 :(得分:6)

与使用on()delegate()等jQuery委派方法类似,以便考虑代码运行时页面中不存在的工具提示元素。

绑定到body的示例,因为它始终存在于页面

$('body').tooltip({
   selector: '.mytooltipClass'

})