如何为以下方案实现自动完成

时间:2014-04-07 17:37:46

标签: javascript jquery ajax autocomplete

我正在为以下场景寻找auto complete解决方案:

我的页面有dropdownlisttextbox

   <table>
    <tr>
    <td>
        <asp:DropDownList ID="ddlRegions" runat="server"></asp:DropDownList> 
    </td>
    <td>
        <label>Enter Iso:</label>
        <asp:TextBox ID="txtIso" runat="server"></asp:TextBox>
    </td>
    <td>
    </tr>
    </table>

我需要在输入4个字符后为autocomplete实现textbox的未来。 文本框需要根据从dropdownlist中选择的选项显示一些数据。

textbox

中输入值时,我需要显示的选项不超过10个

我想我需要使用jqueryajaxwebservice来调用它。

我怎样才能完成这样的事情?

感谢&#39; S

1 个答案:

答案 0 :(得分:0)

只需从链接下载typeahead.js,如下所示,并在您的应用程序中包含: http://twitter.github.io/typeahead.js/examples/ 此外,您必须包含jQuery。