Cập nhật: Một giải pháp mạnh mẽ hơn một chút: http://jsfiddle.net/mattdlockyer/C5GBU/72/
Đối với các nút chỉ chứa văn bản:
$('body').on('click', function (e) {
//did not click a popover toggle or popover
if ($(e.target).data('toggle') !== 'popover'
&& $(e.target).parents('.popover.in').length === 0) {
$('[data-toggle="popover"]').popover('hide');
}
});
Đối với các nút có chứa biểu tượng sử dụng (mã này có lỗi trong Bootstrap 3.3.6, hãy xem cách khắc phục bên dưới trong câu trả lời này)
$('body').on('click', function (e) {
//did not click a popover toggle, or icon in popover toggle, or popover
if ($(e.target).data('toggle') !== 'popover'
&& $(e.target).parents('[data-toggle="popover"]').length === 0
&& $(e.target).parents('.popover.in').length === 0) {
$('[data-toggle="popover"]').popover('hide');
}
});
Đối với Popovers Popovers được sử dụng '[data-original-title]'
thay cho'[data-toggle="popover"]'
Hãy cẩn thận : Giải pháp trên cho phép nhiều cửa sổ bật lên được mở cùng một lúc.
Một popover tại một thời điểm xin vui lòng:
Cập nhật: Bootstrap 3.0.x, xem mã hoặc fiddle http://jsfiddle.net/mattdlockyer/C5GBU/2/
$('body').on('click', function (e) {
$('[data-toggle="popover"]').each(function () {
//the 'is' for buttons that trigger popups
//the 'has' for icons within a button that triggers a popup
if (!$(this).is(e.target) && $(this).has(e.target).length === 0 && $('.popover').has(e.target).length === 0) {
$(this).popover('hide');
}
});
});
Điều này xử lý việc đóng cửa sổ bật lên đã mở và không được nhấp vào hoặc liên kết của chúng chưa được nhấp.
Cập nhật: Bootstrap 3.3.6, xem fiddle
Khắc phục sự cố trong khi sau khi đóng, mất 2 lần nhấp để mở lại
$(document).on('click', function (e) {
$('[data-toggle="popover"],[data-original-title]').each(function () {
//the 'is' for buttons that trigger popups
//the 'has' for icons within a button that triggers a popup
if (!$(this).is(e.target) && $(this).has(e.target).length === 0 && $('.popover').has(e.target).length === 0) {
(($(this).popover('hide').data('bs.popover')||{}).inState||{}).click = false // fix for BS 3.3.6
}
});
});
Cập nhật: Sử dụng điều kiện của cải tiến trước đó, giải pháp này đã đạt được. Khắc phục sự cố nhấp đúp và ma popover:
$(document).on("shown.bs.popover",'[data-toggle="popover"]', function(){
$(this).attr('someattr','1');
});
$(document).on("hidden.bs.popover",'[data-toggle="popover"]', function(){
$(this).attr('someattr','0');
});
$(document).on('click', function (e) {
$('[data-toggle="popover"],[data-original-title]').each(function () {
//the 'is' for buttons that trigger popups
//the 'has' for icons within a button that triggers a popup
if (!$(this).is(e.target) && $(this).has(e.target).length === 0 && $('.popover').has(e.target).length === 0) {
if($(this).attr('someattr')=="1"){
$(this).popover("toggle");
}
}
});
});