twitter-bootstrap – 将popover对齐到左下角

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – 将popover对齐到左下角前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何让popover bottom div不要超出popover按钮右侧,就像在图像中:

这是我的代码

HTML

<a href="#" tabindex="0" class="btn btn" role="button" data-toggle="popover" data-trigger="focus" data-content="<input>">
    Search
</a>

使用Javascript:

$('[data-toggle="popover"]').popover({
                     trigger: 'manual',placement: 'bottom',html: true
                  }).click(function (e) {
                     e.preventDefault();
                     $(this).popover('show');
                  });

Bootply:
http://www.bootply.com/3SLzUgPyrV

解决方法

你可以尝试这样的东西,并适应你的要求:

1.)通过CSS设置箭头的位置:

.popover.bottom .arrow {
    left:90% !important;
}

2.)在点击事件后设置popover的位置.使用你的代码示例,它可能如下所示:

$('[data-toggle="popover"]').popover({
                 trigger: 'manual',html: true
              }).click(function (e) {
                 e.preventDefault();
                 // Exibe o popover.
                 $(this).popover('show');

                $('.popover').css('left','63px'); 
              });

Working Example

原文链接:/bootstrap/234054.html

猜你在找的Bootstrap相关文章