搜索中的单词如何像 Google 中那样附加
我写“视频” 我被添加到下拉列表中:
video converter
video saver
video player
Ho do this? 我只知道每次 asp.net 页面重新加载时,但我需要不重载。
I write "video "
and I is added to the drop-down list:
video converter
video saver
video player
Ho do this?
I just know that every time the asp.net page reloads, but I need without overloading.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用 自动完成 脚本。 Microsoft 的 AJAX Control Toolkit 提供了这一点。
还有一个 jQuery UI 自动完成。
以下是有关该主题的一些教程:
Microsoft 的:
jQuery 的
我将拥有不要将代码从那些复制到这里
:)
You need to use a Autocomplete script. Microsoft's AJAX Control Toolkit provides that.
And there's also a jQuery UI Autocomplete.
Here are some tutorials on the subject:
Microsoft's:
jQuery's
I will have the decency of not copying the code from those to here
:)
您正在谈论一种称为“自动完成”的东西。要实现此功能,您需要使用 AJAX。在 ASP.NET 中,有两种流行的方法可以实现此目的:
Microsoft 的 AJAX 工具包
jQuery
我个人更喜欢 jQuery,因为它感觉比 Microsoft 提供的更轻量/直观,但我建议同时查看两者,看看您更喜欢哪个。 AJAX 工具包与 Visual Studio 的集成程度更高,因此很多人更喜欢使用它...
You are talking about something called AutoComplete. To implement this functionality you will need to use AJAX. In ASP.NET there are two popular ways to accomplish this:
The AJAX toolkit from Microsoft
jQuery
I personally prefer jQuery because it feels more lightweight/intuitive than what Microsoft offers, but I would recommend looking at both and seeing what you are more comfortable with. The AJAX toolkit is more integrated with Visual Studio so many people prefer using this...