87,989
社区成员
发帖
与我相关
我的任务
分享
var jsons={"my":[{"name":"ssh","age":"18"},{"name":"snow","age":"19"}]};
$(function() {
$( "#city" ).autocomplete({
source: function( request, response ) {
$.ajax({
url: "",
dataType: "json",
data: jsons,
success: function( data ) {
response( $.map(data.my, function( item ) {
return {
label: item.name + (item.name ? ", " + item.name : "") + ", " + item.age,
value: item.name
}
}))
}
});
},
minLength: 1 });
});
response( $.map(data.my, function( item ) {
return {
label: item.name + (item.name ? ", " + item.name : "") + ", " + item.age,
value: item.name
}
}))