อัปเดต:โซลูชันที่แข็งแกร่งกว่าเล็กน้อย: http://jsfiddle.net/mattdlockyer/C5GBU/72/
สำหรับปุ่มที่มีข้อความเท่านั้น:
$('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');
}
});
สำหรับปุ่มที่มีไอคอนใช้(รหัสนี้มีข้อบกพร่องใน Bootstrap 3.3.6 ดูการแก้ไขด้านล่างในคำตอบนี้)
$('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');
}
});
สำหรับ JS Generated Popoversใช้'[data-original-title]'
แทน'[data-toggle="popover"]'
Caveat:วิธีการแก้ปัญหาข้างต้นอนุญาตให้เปิดป๊อปอัปหลายรายการพร้อมกัน
โปรดป๊อปอัปหนึ่งครั้งพร้อม:
อัปเดต: Bootstrap 3.0.x ดูรหัสหรือซอได้ที่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');
}
});
});
สิ่งนี้จะจัดการกับการปิดป๊อปอัปที่เปิดอยู่แล้วและไม่ได้คลิกหรือลิงก์ของพวกเขายังไม่ถูกคลิก
อัปเดต: Bootstrap 3.3.6, ดูซอ
แก้ไขปัญหาที่ไหนหลังจากปิดใช้เวลา 2 คลิกเพื่อเปิดใหม่
$(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
}
});
});
อัปเดต:การใช้เงื่อนไขของการปรับปรุงก่อนหน้านี้ได้รับการแก้ไข แก้ไขปัญหาการดับเบิ้ลดับเบิลคลิกและโกพ๊อปโอเวอร์ผี:
$(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");
}
}
});
});