我找不到完整的文档。例如,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
。