如何从 jquery-autocomplete 检索两个值
我需要我的申请自动填写公司名称,但也需要使用所选公司的 ID 填写隐藏的表单字段。
我相信可以使用管道分隔符返回对值,例如......
Microsoft|10
Oracle|20
Sybase|30
确实这似乎有效,但我不知道如何访问第二个参数。
I need my application to auto-complete on a company name, but also fill in a hidden form field with the ID of that company selected.
I believe it's possible to return pair values, with the pipe separator, such as........
Microsoft|10
Oracle|20
Sybase|30
And indeed this seems to work, but I don't know how to access the 2nd argument.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所有内容都应该在您的 select 函数中返回。您的选择函数应与此类似:
然后指定选择函数:
Everything should be returned within your select function. Your select function should be similar to this:
Then to specify the select function: