jQueryUI 自动完成实现搜索页面替换

发布于 2024-10-17 21:55:06 字数 505 浏览 3 评论 0原文

在(现在旧) jQuery 自动完成插件上有一个功能,如果用户单击或按 Enter 键选择自动完成,他们被带到该页面 - 即他们跳过了搜索结果页面。详细信息请参见: http://docs.jquery.com/Plugins/autocomplete#Search_Page_Replacement

我我正在使用新的 jQueryUI 自动完成小部件,并且我真的很努力地试图弄清楚如何实现此功能。

有知道如何操作的 jQuery 专家吗?

On the (now old) jQuery autocomplete plugin there was the functionality that if the user clicked on or pressed enter to select an autocompletion, they were taken to that page - i.e. they skipped the search results page. Details here: http://docs.jquery.com/Plugins/autocomplete#Search_Page_Replacement

I'm using the new jQueryUI Autocomplete Widget, and am really struggling trying to figure out how to implement this feature.

Are there any jQuery gurus out there who know how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情感失落者 2024-10-24 21:55:06
$( ".selector" ).autocomplete({
  select: function(event, ui) { 
     location.href = ui.item.url;
  }
});

http://jsbin.com/oliqu3/edit

$( ".selector" ).autocomplete({
  select: function(event, ui) { 
     location.href = ui.item.url;
  }
});

http://jsbin.com/oliqu3/edit

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