bootstrap.min.js导致下拉列表中断

时间:2015-10-08 15:42:16

标签: javascript jquery html css twitter-bootstrap

我在网页中使用bootstrap控件在桌面上运行过滤器,效果很好。

这是我使用filterable

的可过滤控件\插件

我在网页的页脚和页眉顶部的css中引用了js文件

    <link href="../Static/bootstrap-filterable.css" rel="stylesheet" type="text/css" />
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css" rel="stylesheet" type="text/css" />
<link href="//cdnjs.cloudflare.com/ajax/libs/x-editable/1.4.5/bootstrap-editable/css/bootstrap-editable.css" rel="stylesheet" type="text/css" />

页脚

<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js" type="text/javascript"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/x-editable/1.4.5/bootstrap-editable/js/bootstrap-editable.min.js" type="text/javascript"></script>

问题就像这个家伙在这里遇到的问题same issue, but no solution

是我必须引用bootstrap.min.js,这反过来又会破坏我这样推荐的下拉按钮

 <div class="btn-group" style="padding-top: 5px">

                <div class="btn-group" id="statusSelctor">
                    <a class="btn btn-default dropdown-toggle" style="height: 40px;" data-toggle="dropdown" href="#">Select Status<span class="caret"></span></a>
                    <ul class="dropdown-menu" style="padding-left: 10px">
                        <asp:CheckBoxList ID="statuscblist" runat="server">
                        </asp:CheckBoxList>
                    </ul>
                </div>
            </div>

有什么我想念的吗?

如果有人能帮我们工作,我将不胜感激,因为我需要工作。

由于

0 个答案:

没有答案