微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Bootstrap Popover无法在Bootstrap面板主体内工作

如何解决Bootstrap Popover无法在Bootstrap面板主体内工作

我有一个简单的自举弹出窗口,已将其放置在面板主体内。当我将弹出式窗口放置在面板主体之外时,效果很好。但是我不确定为什么当我在面板主体中放置相同的弹出框时为什么它不起作用。

PopOver内部面板主体

<div class="row">
            <div class="col-md-12">
                <div style="border:1px solid black; margin-top:5px; margin-bottom:5px;">
                    <input id="rbtnTab1" type="radio" name="tabs" checked>
                    <label id="lblTab1" for="rbtnTab1">Tab 1</label>
                    <section id="content1">
                        <div>
                            <div class="col-xs-4 col-md-offset-4">
                                <div class="panel panel-default" style="margin-top:10px">
                                    <div class="panel-heading text-center" style="font-size:15px;font-weight:bold; background-color:#4D94CE; color:white;"><i class="fa fa-users" style="font-size:x-large"></i><br />Panel heading</div>
                                    <div class="panel-body text-center" style="height:60px;font-size:15px">
                                        <button type="button" class="btn btn-info" data-toggle="popover" title="Popover title" data-content="A larger popover to demonstrate the max-width of the Bootstrap popover.">Large popover</button>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <button type="button" class="btn btn-info" data-toggle="popover" title="Popover title" data-content="A larger popover to demonstrate the max-width of the Bootstrap popover.">Large popover</button>
                    </section>
                       </div>
                            </div>
                        </div>
  

用于引导程序弹出窗口的jQuery代码

  $('[data-toggle="popover"]').popover({
            placement: 'top',trigger: 'hover'
        });

面板外的弹出框(效果很好)

<button type="button" class="btn btn-info" data-toggle="popover" title="Popover title" data-content="A larger popover to demonstrate the max-width of the Bootstrap popover.">Large popover</button>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。