0

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

4

1 回答 1

3

您所需要的就在选项表中。它title获取标题和data-content内容(第 3 列)的属性。data-original-title你在 HTML 上看到的是插件脚本执行后添加的,忽略它。

这样做的想法是您已经拥有 HTML 上的信息:

<div id="mything" title="My title=" data-content="Some text here">Test popover</div>

所以你的脚本只做这个,你不需要处理事件:

$('#mything').popover()
于 2011-10-11T05:26:47.753 回答