我有内容的div:
<div class="mydiv">
<a class="mybutton btn btn-primary btn-small" rel="popover" data-html="true" data-placement="bottom" data-content="some individual content"></a>
</div>
弹出框使用此代码
$(function () {
$("a[rel=popover]").popover();
});
我需要洗牌这个 div,所以我有这个代码
$('.jp-random').unbind('click');
$('.jp-random').click(function() {
$(".mydivs .mydiv").shuffle();
});
洗牌后弹出框不起作用。
更新:
好的,我更新了 2.3.1 版的引导工具提示和弹出框代码,并设置了 data-container=".mydivs"。现在我的弹出窗口在左上角,我该如何解决?