如何使用 Jquery、AJAX 和 Servlet 获得实时搜索功能?

发布于 2024-10-21 05:01:15 字数 346 浏览 2 评论 0原文

我一直在遵循本指南: 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

失眠症患者 2024-10-28 05:01:15

您可以使用大部分相同的代码。只需替换

$("#getWeatherReport").click(function(){

$("#cityName").keyup(function(){

要了解有关 jQuery 的更多信息,我强烈推荐他们自己的教程

You can use much of the same code. Just replace

$("#getWeatherReport").click(function(){

by

$("#cityName").keyup(function(){

To learn more about jQuery, I'd warmly recommend their own tutorials.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文