本文介绍了使用自动搜索的文本框/级联文本框的自动搜索的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
hai,我有两个文本框。我想要为两个文本框执行自动搜索/自动填充,我还想根据第一个文本框从数据库中检索第二个文本框的数据。
hai , i am having two textbox's . i want want to do auto search / auto fill for both text box and also i want to retrieve the data for second text box from Database based on first text box.
推荐答案
<input id="autocomplete" type="text" />
// You can get the list from database too...
var list = ["One", "Two", "Three"];
// Set up the autocomplete.
这样,您可以为文本框设置自动完成功能(请注意在ASP.NET中,文本框控件在JavaScript的浏览器中呈现为输入字段;或者jQuery,用于操作它。您可以阅读我附上的链接,了解有关自动完成插件的更多信息。
This way, you can set up autocomplete feature for your text boxes (please note that in ASP.NET a text box control is rendered as an input field in the browser for JavaScript; or jQuery, to manipulate it). You can read the link I have attached for more about autocomplete plugin.
这篇关于使用自动搜索的文本框/级联文本框的自动搜索的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!