此解决方案适用于单按钮情况:Is it possible to use a div as content for Twitter's Popover
但是在我的页面中,我有一堆弹出框(比如 50-100)。
所以我需要修改这个解决方案。
这是@jävi 的解决方案:
$(document).ready(function(){
$('.danger').popover({
html : true,
content: function() {
return $('#popover_content_wrapper').html();
}
});
});
我的每个按钮都有自己的 id。
<a class='danger' data-placement='above' title="Popover Title" href='#'>Click</a>
<div id="popover_div1" style="display: none">
<div>This is your div content</div>
</div>
<a class='danger' data-placement='above' title="Popover Title" href='#'>Click</a>
<div id="popover_div2" style="display: none">
<div>This is your div content</div>
</div>
那么如何重写这个 javascript 代码片段来覆盖我的所有按钮呢?