Answers:
将trigger
弹出窗口的选项设置为,hover
而不是click
,这是默认选项。
可以使用data-*
标记中的任一属性来完成此操作:
<a id="popover" data-trigger="hover">Popover</a>
或带有初始化选项:
$("#popover").popover({ trigger: "hover" });
这是一个DEMO。
<script> $(function () { $("#popover").popover(); }); </script>
$("#popover").popover({ trigger: "hover" });
。
如果您也想悬停弹出窗口本身,则必须使用手动触发器。
这是我想出的:
function enableThumbPopover() {
var counter;
$('.thumbcontainer').popover({
trigger: 'manual',
animation: false,
html: true,
title: function () {
return $(this).parent().find('.thumbPopover > .title').html();
},
content: function () {
return $(this).parent().find('.thumbPopover > .body').html();
},
container: 'body',
placement: 'auto'
}).on("mouseenter",function () {
var _this = this; // thumbcontainer
console.log('thumbcontainer mouseenter')
// clear the counter
clearTimeout(counter);
// Close all other Popovers
$('.thumbcontainer').not(_this).popover('hide');
// start new timeout to show popover
counter = setTimeout(function(){
if($(_this).is(':hover'))
{
$(_this).popover("show");
}
$(".popover").on("mouseleave", function () {
$('.thumbcontainer').popover('hide');
});
}, 400);
}).on("mouseleave", function () {
var _this = this;
setTimeout(function () {
if (!$(".popover:hover").length) {
if(!$(_this).is(':hover')) // change $(this) to $(_this)
{
$(_this).popover('hide');
}
}
}, 200);
});
}
您描述的功能可以使用Bootstrap工具提示轻松实现。
<button id="example1" data-toggle="tooltip">Tooltip on left</button>
然后为该元素调用tooltip()函数。
$('#example1').tooltip();