Twitter's Bootstrap Tooltip中使用的数据选择器选项是什么?描述如下......
If a selector is provided, tooltip objects will be delegated to the specified targets.
但我不明白其目的或如何使用它。
答案 0 :(得分:6)
与使用on()
或delegate()
等jQuery委派方法类似,以便考虑代码运行时页面中不存在的工具提示元素。
绑定到body
的示例,因为它始终存在于页面
$('body').tooltip({
selector: '.mytooltipClass'
})