我正在尝试创建popover但是窗口没有在弹出窗口中显示数据。 它自己的窗口正在激活。
<i class="glyphicon glyphicon-warning-sign pull-right bottom" data-content="Body content" data-placement="left" title="Title"></i>
<script>
$(function () {
$('.glyphicon-warning-sign').popover({
trigger: 'hover',
delay: {hide: 1000}
});
});
答案 0 :(得分:0)
$(function () {
$('.glyphicon-warning-sign').popover({
trigger: 'hover',
delay: {hide: 1000},
title: 'title',
content: 'content'
});
});