完全なドキュメントが見つかりません。たとえば、popover
効果 (ここ) は、DOM のdata-origin-title
属性を独自のタイトルとして、およびdata-cotent
そのコンテンツとして使用します。
$('#somedom').hover (->
$(this).addClass("hover")
$(this).attr("data-original-title","Location")
$(this).attr("data-content":'The popover plugin provides a simple interface for adding popovers to your appli cation. It extends the bootstrap-twipsy.js plugin,
so be sure to grab that file as well when including popovers in your project!')
$(this).popover({})
$(this).popover("show")
),->
$(this).removeClass("hover")
どこでそれを学ぶのですか?公文書にはdata-origin-title
属性がありません。のソースコードにもありませんbootstrap-popover.js
。