以下Bootstrap代码为我提供了“粘性”弹出窗口(因此用户可以与弹出框内的内容进行交互)。问题是当打开弹出窗口时,应关闭(隐藏)其他弹出窗口。知道如何实现这个吗?
$("[rel=popover]").popover({placement:'bottom', trigger:'manual'}).hover(function(){
$(this).popover('show');
e.preventDefault();
});
答案 0 :(得分:22)
这里有一个very simple solution(不是我的解决方案,但效果很好):
$('.link-popover').click(function(){
$('.link-popover').not(this).popover('hide'); //all but this
});
答案 1 :(得分:15)
我一直在玩这个游戏,并且还有一些关于触发手动显示/隐藏以使其发挥得很好的其他问题。实际上悬停是mousein
和mouseout
,除非您添加一些额外的检查,否则您会遇到我刚刚遇到的问题!
Here is my solution in action我将尝试解释我所做的事情。
$(function () {
var overPopup = false;
$('[rel=popover]').popover({
trigger: 'manual',
placement: 'bottom'
// replacing hover with mouseover and mouseout
}).mouseover(function (e) {
// when hovering over an element which has a popover, hide
// them all except the current one being hovered upon
$('[rel=popover]').not('#' + $(this).attr('id')).popover('hide');
var $popover = $(this);
$popover.popover('show');
// set a flag when you move from button to popover
// dirty but only way I could think of to prevent
// closing the popover when you are navigate across
// the white space between the two
$popover.data('popover').tip().mouseenter(function () {
overPopup = true;
}).mouseleave(function () {
overPopup = false;
$popover.popover('hide');
});
}).mouseout(function (e) {
// on mouse out of button, close the related popover
// in 200 milliseconds if you're not hovering over the popover
var $popover = $(this);
setTimeout(function () {
if (!overPopup) {
$popover.popover('hide');
}
}, 200);
});
});
这对我来说非常适合使用以下html:
<a href="#" id="example1" class="btn large primary" rel="popover" data-content="Example 1!!!" data-original-title="Example 1 title">Button 1</a>
<a href="#" id="example2" class="btn large primary" rel="popover" data-content="Example 2!!!" data-original-title="Example 2 title">Button 2</a>
<a href="#" id="example3" class="btn large primary" rel="popover" data-content="Example 3!!!" data-original-title="Example 3 title">Button 3</a>
希望能把你排除在外:)
答案 2 :(得分:11)
根据bootstrap文档:Use the focus trigger to dismiss popovers on the next click that the user makes.
<a href="#" tabindex="0" class="btn btn-lg btn-danger" role="button" data-toggle="popover" data- trigger="focus" title="Dismissible popover" data-content="And here's some amazing content. It's very engaging. Right?">Dismissible popover</a>
答案 3 :(得分:7)
使用Bootstrap 3's event callbacks即可:
$(document).on('show.bs.popover', function() {
$('.popover').not(this).popover('hide');
});
和coffeescript
$(document).on 'show.bs.popover', ->
$('.popover').not(this).popover('hide')
答案 4 :(得分:4)
Simpiet解决方案关闭所有其他popovers。这可以添加到任何会出现弹出窗口的事件,例如点击/悬停等。就在您在以下代码中显示弹出式粘贴之前:
$('.popover').not(this).hide(); //Hides all other popovers
除了当前的
之外,这将删除页面上的所有弹出窗口答案 5 :(得分:3)
$('li').popover({
title: 'My title',
content: 'My content'
})
.on('show.bs.popover', function() {
if (window._bsPopover) {
$(window._bsPopover).popover('hide')
}
window._bsPopover= this;
})
.on('hide.bs.popover', function() {
window._bsPopover= null; // see Peter Jacoby's comment
});
答案 6 :(得分:1)
我为我的内容使用了一个函数,所以我(在coffeescript中):
provideContentForPopover = (element) ->
$('.some-selector').not(element).popover 'hide'
"some content to be returned"
$('.some-selector').popover
content: -> provideContentForPopover @
答案 7 :(得分:1)
我为我的内容使用了一个功能,它运行正常。
CREATE TABLE TS_TEST (
MY_NAME VARCHAR2(100),
created_time TIMESTAMP(6) default CURRENT_TIMESTAMP AT TIME ZONE 'GMT'
);
答案 8 :(得分:0)
$('.allThePopovers').click(function () {
if ($(this).hasClass('popoverIsOpen')) {
$(this).removeClass('popoverIsOpen');
} else {
$('.popoverIsOpen').popover('hide');
$('.allThePopovers').removeClass('popoverIsOpen');
$(this).addClass('popoverIsOpen');
});
只需用悬停或鼠标替换点击即可满足您的需求。
答案 9 :(得分:0)
如果你想一次只打开一个弹出窗口,点击打开和关闭(光标位置无关紧要),这样可以正常工作:
$('[data-toggle="popover"]').popover({ html: true }).bind("click", function(){
if(!$(this).parent().children("a").first().is(":hover"))
$( '[data-toggle="popover"]').popover("hide");
else
$( '[data-toggle="popover"]').not($(this).parent().children("a").first()).popover("hide");
return false;
});
重要的是每个popover都有一个单独的父母,比如
<ul> <li> <popover> </li> <li> <popover> </li> </ul>
HTML:
<li>
<a id="quickmenu-i-305" data-toggle="popover" data-placement="bottom" data-title="Title" data-content='<h2>Plesk Login</h2>' href="Plesk Login">Ihr Kundenbereich</a>
</li>
答案 10 :(得分:0)
我能够通过隐藏哪个popover不是被点击的那个来完成类似的事情。我不确定,但它似乎对我有用。这是为了在点击时显示弹出窗口并保持活动状态。单击另一个弹出窗口时会隐藏它。
<script>
$(function () {
$('[rel=popover]').popover({
}).click(function (e) {
$('[rel=popover]').not('#friend_' + $(this).attr('id')).popover('hide');
});
});
</script>
答案 11 :(得分:0)
更简单的工作方式:
$('[rel=popover]').popover({
trigger: 'manual',
placement: 'bottom'
}).click(function(e) {
$('[rel=popover]').not('#' + $(this).attr('id')).popover('hide');
var $popover = $(this);
$popover.popover('toggle');
});
确保您的popover具有唯一ID;] 默认情况下,你的popover会表现得像只有一个popover。
答案 12 :(得分:0)
我发现动态弹出窗口存在一些问题,所以 这里有2个静态和动态弹出窗口的解决方案:
第一个解决方案是使用popover选项triger:'focus'
但是这个选项在某些Android设备上不起作用
和第二个:
$('body').popover({
html: true,
//this is for static and dynamic popovers
selector: '[data-toggle="popover"]',
trigger: 'click',
content: function () {
//i am using predefined content for popovers. replace with your code or remove at all
return $($(this).data('templateselector') + ' .content').html();
},
title: function () {
return $($(this).data('templateselector') + ' .title').html();
},
container: 'body'
}).on('show.bs.popover', function (e) {
// i've found that showed popovers has aria-describedby
// and $('[data-toggle="popover"]).not(this) not working for dynamic popovers so i came with this:
$('[data-toggle="popover"][aria-describedby]').popover('hide');
var trigger = $(e.target);
// this is for adding custom class for popover container
// just remove it if you dont need
trigger.data('bs.popover').tip().addClass($(trigger).data('class'));
});
答案 13 :(得分:0)
当您将鼠标悬停在其上时,使用此方法隐藏所有其他弹出框,或者单击其他元素以使弹出框打开
一个 二 三 4
$(document).ready(function(){
$('.btnPopover').mouseover(function(){
$(this).popover({
html: true,
trigger: 'manual'
}).popover('show');
$('.btnPopover').not(this).popover('hide');
});
});
确保将bootstrap.js和bootstrap.css添加到您的页面。 希望这会有所帮助。
干杯!! Suraj Kumar
答案 14 :(得分:0)
您必须使用<a>
锚标记才能兼容。
我的小提琴: https://jsfiddle.net/oneflame/pnb8Ltj3/
Bootstrap Link - http://getbootstrap.com/javascript/#dismiss-on-next-click
<div id="FragmentText1">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, est laborum.
</div>
$(document).ready(function(){
$('a.LexicalEntry').popover({
html : true,
content: function() {
return getLexicalDefinition($(this).text());
} ,
trigger: 'focus',
placement: 'auto',
html: true,
container: 'body'
});
});
// *** Injects HTML into raw text.
// *** Splits the content string using a whitespace regular expression.
$('#FragmentText1').each(function() {
// var words = $.trim( $(this).text() ).split(/\s+/g);
var $this = $(this);
$this.html(
$this.text().trim().replace(/\b(\w+)\b/g,
"<a tabindex='0' class='LexicalEntry'' role='button' title='Definition: $1'>$1</a>"
));
});