5

Twitter の Bootstrap Tooltipで使用される data-selector オプションは何ですか? 説明には...

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

しかし、その目的や使い方がわかりません。

4

1 に答える 1

6

コードの実行時にページに存在しないツールチップ要素を説明するために、on()またはのような jQuery 委任メソッドを使用するのと似ています。delegate()

bodyページに常に存在するため、バインディングの例

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

})
于 2012-11-24T21:08:49.140 に答える