我在输入框中有这个自动完成功能,一切正常:
$(function() {
$("#customer").autocomplete({
minLength: 1,
source: function(request, response) {
$.getJSON('url.php', { 'string': request.term }, function(data) {
if(data) {
var clienti = data.error ? [] : $.map(data, function(customer) {
return {
label: customer.fullname,
array: customer
};
});
response(clienti);
}
});
},
select: function( event, ui ) {
$("#description").val(ui.item.array.description);
}
})
});
我想调用(触发)相同的自动完成功能ON LOADING另一个页面,但没有选择项目! (只需将数据传递给Ajax)。
如果我使用$(“#customer”)。自动完成(“搜索”)全部正在工作但我需要选择ITEM来查看$(“#description”)。val! $(“#customer”)。val在页面加载时由PHP加载。
我该怎么办? 谢谢。