0

我正在对我的文本框使用自动完成功能。我希望检索到我的 json 的 ID 应该存储在隐藏的文本框中 id="special" 以逗号分隔保存。假设我在自动建议中选择的任何值,其 id 应该存储在以逗号分隔的隐藏文本框中。我怎样才能最小化这段代码。我是 jquery 的新手。

$(".artist").focus().autocomplete( '<?php echo HTTP_PATH . '/artists/getArtistList'; ?>', {
            multiple: true,
            mustMatch: true,
            matchContains: true,
            scroll: true,
            minChars: 0,
            autoFill: true,
            dataType: "json",
            parse: function(data) {
                return $.map(data, function(item) {
                    return { data: item, value: item.name, result: item.name};
                });
            },
            formatItem: function(item) {
                return item.name;
            },
            formatResult: function(item) {
                return item.id;
            },
            formatMatch: function(item) {
                return item.name;
            } 
        });
4

1 回答 1

3

您是在使用 jQuery UI 还是在使用其他插件?如果您使用的是 jQuery UI,那么您可以参考http://jqueryui.com/autocomplete/#remote-jsonp

于 2012-11-17T01:12:50.403 回答