我正在对我的文本框使用自动完成功能。我希望检索到我的 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;
}
});