5

Twitter 的引导工具提示中使用的数据选择器选项是什么?描述如下...

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

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

4

1 回答 1

6

它类似于使用 jQuery 委托方法,例如on()delegate()以说明运行代码时页面中不存在的工具提示元素。

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

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

})
于 2012-11-24T21:08:49.140 回答