function show_profile_popover(e) {
var $el = $(e.target);
hover_timer = setTimeout(function () {
hover_timer = null;
$.ajax({
type: 'GET',
url: $el.data('href'),
success: function (data) {
$el.popover({
html: true, //支持HTML字符串
title:"提示窗", //弹窗标题
content: data, //弹窗内容
trigger: 'manual', //手动
placement: 'top', //弹出框位置
animation: false //动画效果
});
$el.popover('show');
$('.popover').on('mouseleave', function () {
setTimeout(function () {
$el.popover('hide');
}, 200);
});
}
});
}, 500);
}
设置的popover的title、placement、animation等属性,为什么没有表现出来呢?