你怎么知道如何使用twitter-bootstrap?

时间:2011-10-10 16:52:27

标签: javascript jquery coffeescript twitter-bootstrap

我找不到完整的文件。例如,popover效果(here)将使用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

的源代码中都没有

1 个答案:

答案 0 :(得分:3)

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

这个想法是你已经拥有关于HTML的信息:

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

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

$('#mything').popover()