轨道 3 和jQuery - 自动完成和点击后发送表格

发布于 2024-12-09 09:06:05 字数 135 浏览 0 评论 0原文

我考虑一下这种情况的解决方案,当输入几个字母后,您将从数据库中获取一个单词,然后单击加载的单词后将发送表格?

在关于自动完成的基本形状中,因此在单击加载的单词后,该单词将被设置为输入。

谢谢

I think about the solution of situation, when after typing a few letters you will get a words from database and after click on a loaded word will be send the form?

In the basic shape about autocomplete, so after click on a loaded word will this word set to input.

Thank you

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

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

发布评论

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

评论(2

天气好吗我好吗 2024-12-16 09:06:05

问题不是很清楚 - 但我猜测在自动完成之后您想自动提交表单。您可以通过在 select 回调中调用 Submit 来完成此操作

The question is not very clear - but I'm guessing that after autocomplete you want to automatically submit the form. You can do this by calling submit in the select callback

晨光如昨 2024-12-16 09:06:05

我不知道您使用的自动完成功能是什么,但如果您使用 jQuery-UI 自动完成小部件,则可以将回调放在自动完成配置哈希中:

$( ".selector" ).autocomplete({
  select: function(event, ui) { ... }
});

如果您不使用此小部件,那么我的答案是'当然,它非常有用,对此我表示歉意。你的问题没有太多细节。

顺便说一句,如果您使用的是自行开发的自动完成实现,我强烈建议您研究 jQuery-UI选项

I don't know what implementation of autocomplete you are using but if you are using the jQuery-UI autocomplete widget there is a callback you can put right in the autocomplete configuration hash:

$( ".selector" ).autocomplete({
  select: function(event, ui) { ... }
});

If you aren't using this widget then my answer isn't as terribly useful of course and I apologize. There isn't a lot of detail in your question.

On a side note, if you're using a home grown autocomplete implementation I'd strongly suggest you investigate the jQuery-UI option

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