选择输入框上的 jQuery UI 自动完成
我有 JSON 数据提供 id
、label
和 value
作为值的键。
当我选择数据时,我将 label
/value
值选择到文本框 #id_emp_name
上。我希望能够将选定的 label
/value
的 id
插入隐藏文本框 #id_emp_id
。
我当前的 JavaScript 代码:
$('#id_emp_name').autocomplete({
source: '/best_choose/employees.json',
minLength: 1,
dataType: 'json',
max: 12
});
I have JSON data feeding id
, label
and value
as keys for values.
When I select data I select the label
/value
values onto the textbox #id_emp_name
. I want to be able to insert the id
of the label
/value
that was selected into the hidden textbox #id_emp_id
.
My current javascript code:
$('#id_emp_name').autocomplete({
source: '/best_choose/employees.json',
minLength: 1,
dataType: 'json',
max: 12
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用自动完成的“select”选项定义一个函数来处理选择:
Use the "select" option of autocomplete to define a function to handle selections: