编辑:我需要使用一个类,感谢您向我指出该类
我有以下div:
<div class="section-link" id="section-tooltip" data-content="Popup with option trigger" rel="popover" data-placement="right">
<div class="section-features" style="display: none;">
Content
</div>
</div>
<div class="section-link" id="section-tooltip" data-content="Popup with option trigger" rel="popover" data-placement="right">
<div class="section-features" style="display: none;">
Content
</div>
</div>
<div class="section-link" id="section-tooltip" data-content="Popup with option trigger" rel="popover" data-placement="right">
<div class="section-features" style="display: none;">
Content
</div>
</div>
正如您所看到的,它们都使用相同的 id,我正在尝试使用以下 JQuery 在引导程序中创建一个弹出窗口,但是它只为一个 div 执行此操作,并且我试图让它为它们都执行此操作而无需设置个人身份证。
$('#section-tooltip').each(function(){
$(this).popover({
trigger: "hover",
html : true,
content: function() {
return $(this).children('div:first').html();
}
});
});