可搜索的下拉列表

时间:2014-01-24 12:19:04

标签: javascript asp.net

在下面的代码中有一个包含国家/地区的下拉列表,我的目标是使下拉列表可编辑和搜索。请帮我这样做。

代码:

<label for='SelectCountry'>Choose a country:</label><br /><br />

    <asp:DropDownList id='SelectCountry' name='SelectCountry' runat='server'
                      ClientIDMode='Static'>
        <asp:ListItem Text='Afghanistan' Value='Afghanistan'></asp:ListItem>
        <asp:ListItem Text='Albania' Value='Albania'></asp:ListItem>
        <asp:ListItem Text='Algeria' Value='Algeria'></asp:ListItem>
        <asp:ListItem Text='Bahrain' Value='Bahrain'></asp:ListItem>
        <asp:ListItem Text='Bangladesh' Value='Bangladesh'></asp:ListItem>
        <asp:ListItem Text='Barbados' Value='Barbados'></asp:ListItem>
        <asp:ListItem Text='Cambodia' Value='Cambodia'></asp:ListItem>
        <asp:ListItem Text='Cameroon' Value='Cameroon'></asp:ListItem>
        <asp:ListItem Text='Canada' Value='Canada'></asp:ListItem>
    </asp:DropDownList>

    <br/>

    <script type='text/javascript' >
        $(function () {
            $('#SelectCountry').ufd({ log: true });
        });    
    </script>

</asp:Content>

3 个答案:

答案 0 :(得分:5)

您可以使用选择的jquery。

以下是link

答案 1 :(得分:1)

Select2是一个jquery插件,提供搜索和显示图片等功能,只需查看此链接:Select2 - DropDown

答案 2 :(得分:1)

enter image description here
具有自动完成和过滤文本的可搜索下拉列表,只需浏览链接即可 Reference