如何将选定的输入值附加到 Ajax AutoComplete for jQuery 中的另一个 div 中?
您好,我正在使用 Ajax AutoComplete for jQuery
库
http://www. devbridge.com/projects/autocomplete/jquery/
那里有 2 个演示。
在第一个演示(Ajax 自动建议示例(开始输入国家/地区名称))中,
当您从下拉列表中选择一个国家/地区时,该国家/地区会将图像添加到 div 中 像这样,
<div id="selection"><img alt="" src="/global/flags/small/ht.png"> Haiti</div>
选定的下拉值是Haiti
我该怎么做。
我想在鼠标单击下拉值时以及在选定的下拉值上按 Enter 时执行此操作。
我尝试过,但想不出办法......请帮忙:(
hi i am using Ajax AutoComplete for jQuery
library
http://www.devbridge.com/projects/autocomplete/jquery/
there are 2 demos there .
in the first demo (Ajax auto-suggest sample (start typing country name))
when you select a country from the drop down that country and a image is added to a div
like this
<div id="selection"><img alt="" src="/global/flags/small/ht.png"> Haiti</div>
the selected dropdown value is Haiti
how can i do this .
i want to do this when mouse clicking
on drop-down value and also when press enter
on selected drop-down value .
i tried but could not think a way ................. please help :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
autocomplete
参数中,您可以定义onSelect
回调。添加函数以更改带有 idselection
的div
。例如:In the
autocomplete
-parameters you can define anonSelect
callback. Add the function to change thediv
with the idselection
. E.g.: