我在我的项目中使用引导程序。我想在模态窗口内使用 popover,但 popover 的标题如下所示:
这是我在模态中的代码:
<button id="popover-test-in-modal" type="button" class="btn btn-primary"
data-toggle="popover" title="Test for popover"
data-content="And here's some amazing content. Testing popover.">Popover
</button>
<script>
$("#popover-test-in-modal").popover();
</script>
这是 jsFiddle: http: //jsfiddle.net/7k5mjw24/
我该如何解决?