使用jquery自动完成小部件,如何使用我自己的数据在选择后填充输入值

发布于 2024-12-01 22:58:18 字数 221 浏览 1 评论 0原文

在我的表单文本输入栏中,自动完成小部件返回的 json 将为 [{id = 1,lable="lable1"},......],

[{id = 1,label="label1"},{id = 2, label="label2"},......]

我希望输入框显示值为“label”默认情况下,但我希望在提交表单时输入值为“id”..

非常感谢!

In my form text input bar, the json returned by the autocomplete widget will be, [{id = 1,lable="lable1"},......]

[{id = 1,label="label1"},{id = 2, label="label2"},......]

and I want the input box display value to be "label" which works as default, but I want to the input value to be "id" when I submit the form..

Many thanks!

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

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

发布评论

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

评论(1

青芜 2024-12-08 22:58:18

我通常保留一个 就在自动完成输入旁边,然后在完成的选择事件上,我用 ID 填充它:

 $("#autocomplete-input").autocomplete({
            minLength: 2,
            select: function (event, ui) {
                $("#autocomplete-input-id").val(ui.item.id);
            }

        }); 

I usually keep a <input type='hidden'> right next to the autocomplete input, and then on the select event of the complete I populate that with the ID:

 $("#autocomplete-input").autocomplete({
            minLength: 2,
            select: function (event, ui) {
                $("#autocomplete-input-id").val(ui.item.id);
            }

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