我正在为以下场景寻找auto complete
解决方案:
我的页面有dropdownlist
和textbox
:
<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
我想我需要使用jquery
,ajax
和webservice
来调用它。
我怎样才能完成这样的事情?
感谢&#39; S
答案 0 :(得分:0)
只需从链接下载typeahead.js,如下所示,并在您的应用程序中包含: http://twitter.github.io/typeahead.js/examples/ 此外,您必须包含jQuery。