使用预先输入的引导程序,在实时搜索中,我不仅需要输出字段列表,还需要输出包含指向特定ID的链接的字段列表。如何在jQuery中做到这一点?
这是显示常用列表的有效示例。
$('.typeahead').typeahead({
source: function (query, process) {
var get_city = $( ".s-h-leng" ).val();
return $.get('/ajax_search.php', {
query: query,
get_city: get_city
}, function (data) {
return process(data);
});
}
});