我有一套动态的可信任的div。拥有class" .showPopover"的div将有一个popover。弹出窗口触发器设置为手动,因为我希望它们出现在焦点上,但并不总是隐藏在模糊处。
我在这里找到[问题]:Bootstrap Tooltip with manual trigger and selector option 我无法使用"选择器方法"连同手动触发器,所以我按照其中一个答案,但弹出窗口仍然没有出现动态添加的div。
问题是,我只想让popover出现在具有特定类的div中,而div不会与div一起添加。
使用启用按钮可以简化弹出框的div类的更改。
jQuery(document).ready(function($) {
$('a.add').on('click', function(event) {
event.preventDefault();
$('.container').append('<p class="input" contenteditable="true"></p>');
});
$('a.enable').on('click', function(event) {
event.preventDefault();
$('.input').not('.showPopover').addClass('showPopover');
});
$('.container').on('focus', '.input.showPopover', function(event) {
if (!$(this).data("bs.popover")) {
$(this).popover({
placement:'right',
trigger:'manual',
html:true,
content:'<a href="#" class="btn btn-danger">Remove</a>'
});
}
$(this).popover('show');
});
var mousedownHappened = false;
$('.container').on('blur', '.input', function(event) {
if(mousedownHappened) {
mousedownHappened = false;
} else {
$(this).popover('hide');
}
});
$('.container').on('mousedown', '.popover .btn', function(event) {
mousedownHappened = true;
});
});
Jsfiddle:http://jsfiddle.net/Lh2rpj0f/2/
Jquery 1.11.1,Bootstrap 3.3.2
感谢Yenne Info,我有一个可行的解决方案: http://jsfiddle.net/Lh2rpj0f/4/
它可能不是最好的解决方案,但它完全符合我的要求。 (当我单击popover内的按钮时,单击“启用”按钮时不会破坏此弹出窗口。)
至于现在,我的最终解决方案是:Bootstrap popover with manual trigger attached on dynamic content
答案 0 :(得分:2)
我更新了原始代码,现在它也可以按预期工作。
$('.container').on('focus', '.input.showPopover', function(event) {
if (!$(this).data("bs.popover") || !$(this).attr('data-popoverAttached')) {
$(this).popover('destroy').popover({
placement:'right',
trigger:'manual',
html:true,
content:'<a href="#" class="btn btn-danger">Remove</a>'
});
$(this).attr('data-popoverAttached', true);
}
$(this).popover('show');
});
JSfiddle:http://jsfiddle.net/Lh2rpj0f/5/
但是,我认为引导程序弹出代码中存在问题。我认为我的原始代码不起作用的原因是,引导弹出窗口以某种方式神奇地附加(使用默认选项!)到我所有动态添加的div(即使它们没有类.showPopover)。因此,当焦点触发时,它不会通过if语句。 data-popoverAttached属性解决了这个问题。
答案 1 :(得分:0)
如上所述here,您需要为每个元素动态生成工具提示。按照答案中给出的示例,在容器上绑定mouseenter
和mouseleave
,并在必要时创建新的工具提示。
答案 2 :(得分:0)
您可以重设并设置popover ...
小提琴:http://jsfiddle.net/Lh2rpj0f/3/
JS:
jQuery(document).ready(function($) {
$('a.add').on('click', function(event) {
event.preventDefault();
$('.container').append('<div class="input" contenteditable="true"></div>');
});
$('a.enable').on('click', function(event) {
event.preventDefault();
$('.input').not('.showPopover').addClass('showPopover');
unset();set();
});
set();
function unset(){
$('.input').popover('destroy');
}
function set(){
$('.container').on('focus', '.input.showPopover', function(event) {
if (!$(this).data("bs.popover")) {
$(this).popover({
placement:'right',
trigger:'manual',
html:true,
content:'<a href="#" class="btn btn-danger">Remove</a>'
});
}
$(this).popover('show');
});
$('.container').on('blur', '.input', function(event) {
if(mousedownHappened) {
mousedownHappened = false;
} else {
$(this).popover('hide');
}
});
$('.container').on('mousedown', '.popover .btn', function(event) {
mousedownHappened = true;
});
}
var mousedownHappened = false;
});