0

ブートストラップ selectpicker javascript 関数が asp で機能しません。

Javascript コード:

<script type="text/javascript">
       $(document).ready(function () {
           $('.selectpicker').selectpicker();
       });
 </script>

ASP コード:

<asp:DropDownList ID="DropDownList2" CssClass="selectpicker" data-style="btn-danger" runat="server">
    <asp:ListItem>Action</asp:ListItem>
    <asp:ListItem>Another action</asp:ListItem>
    <asp:ListItem>Something else here</asp:ListItem>
    </asp:DropDownList>
4

1 に答える 1

1

使用する$('.dropdown-toggle').dropdown();

于 2014-09-01T11:26:14.380 に答える