如何将选定的输入值附加到 Ajax AutoComplete for jQuery 中的另一个 div 中?

发布于 2024-12-01 15:43:32 字数 561 浏览 2 评论 0原文

您好,我正在使用 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 技术交流群。

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

发布评论

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

评论(1

遮云壑 2024-12-08 15:43:32

autocomplete 参数中,您可以定义 onSelect 回调。添加函数以更改带有 id selectiondiv。例如:

$(>selector<).autocomplete({
    ...
    onSelect: function(value, data) {
        $('#selection').html('<img src="/global/flags/small/' + data + '.png" alt="" /> ' + value);
    }
    ...
});

In the autocomplete-parameters you can define an onSelect callback. Add the function to change the div with the id selection. E.g.:

$(>selector<).autocomplete({
    ...
    onSelect: function(value, data) {
        $('#selection').html('<img src="/global/flags/small/' + data + '.png" alt="" /> ' + value);
    }
    ...
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文