有没有办法在 div 标签上使用 bootstrap 的弹出窗口?

Is there anyway to use bootstrap's popover on div tags?

Bootstrap 的 popover 很容易用在像这样的标签上 demo 有什么方法可以在悬停事件和 div 标签上使用它吗?

HTML:

<div class="container">
    <a id="popoverData" class="btn" href="#" data-content="Popover with data-trigger" rel="popover" data-placement="bottom" data-original-title="Title" data-trigger="hover">Popover with data-trigger</a>
    <a id="popoverOption" class="btn" href="#" data-content="Popup with option trigger" rel="popover" data-placement="bottom" data-original-title="Title">Popup with option trigger</a>
</div>

JS:

$('#mytext').popover();
$('#name').popover();

为什么不呢?

查看这个 jsFiddle:http://jsfiddle.net/9P64a/2892/

html

<div id="container" data-content="Popup with option trigger" rel="popover" data-placement="bottom" data-original-title="Title">
    Whatever you want.
</div>

javascript

$('#container').popover({ trigger: "hover" });