如何使用 Jquery、AJAX 和 Servlet 获得实时搜索功能?
我一直在遵循本指南: http ://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/ 当用户在搜索中输入关键字并按下搜索按钮时,我就可以获得结果。现在,我该如何做到当用户开始输入任何字符时,就会出现一个发布请求。现在,它使用点击功能。我希望能够摆脱搜索按钮,并在用户开始在搜索栏中输入字母时让发布请求发生。 谢谢。
I have been following this guide: http://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/
When a user types a keyword in the search and presses the search button, I am able to get results back. Now, how do I make it so when the user starts typing any character, there is a post request. Right now, it uses the click function. I want to be able to get rid of the search button and let the post request occur whenever the user starts to type in a letter in the search bar.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 jQuery
http://docs.jquery.com/Plugins/autocomplete
纯 js
http://www.brandspankingnew.net/archive/2006/08/ajax_auto -suggest_auto-complete.html
http://articles.sitepoint.com/article /life-自动完成-文本框
One that uses jQuery
http://docs.jquery.com/Plugins/autocomplete
Plain js
http://www.brandspankingnew.net/archive/2006/08/ajax_auto-suggest_auto-complete.html
http://articles.sitepoint.com/article/life-autocomplete-textboxes
您可以使用大部分相同的代码。只需替换
为
要了解有关 jQuery 的更多信息,我强烈推荐他们自己的教程。
You can use much of the same code. Just replace
by
To learn more about jQuery, I'd warmly recommend their own tutorials.