如果您将鼠标悬停在弹出窗口或按钮上,下面的代码应该会阻止弹出窗口关闭,但是,它仅在重新加载时有效,然后停止工作。
$('.popover3-test').popover({
placement:'bottom',
template: $('.popover2'),
trigger: 'manual',
}).mouseenter(function(e) {
$(this).popover('show');
var t = null;
$(".popover2, .popover3-test")
.mouseleave(function() {
t = setTimeout(function() {
$('.popover2').hide();
}, 1000); // Or however many milliseconds
})
.mouseenter(function() {
if(t !== null)
clearTimeout(t);
});
});
演示:http: //jsfiddle.net/MnpWV/1/