我想向这个字形图标添加一个弹出框,但是我无法让它工作。
HTML
<a href="#" data-toggle="popover" title="Popover Header" data-content="You must branch to this flow first, before you can return to the original flow"><span ng-show="flow.branched_from.length==0" class="glyphicon glyphicon-question-sign" aria-hidden="true" ></span></a>
并在文件末尾:
<script>
$(document).ready(function(){
$('[data-toggle="popover"]').popover();
});
</script>
我在文件的开头包含了引导程序。
我看不出我做错了什么,工具提示有效。