Это html-файл:
Код: Выделить всё
Tags:
Код: Выделить всё
$(function() {
$( "#tags" ).autocomplete({
source: "test.php",
autoFocus : true,
dataType: "json"
});
});
Код: Выделить всё
$term = $_REQUEST['term'];
$result = array();
$arr['id'] = "pippo";
$arr['value'] = "pippo";
array_push($result, $arr);
$arr['id'] = "topo";
$arr['value'] = "topo";
array_push($result, $arr);
echo json_encode($result);
Подробнее здесь: https://stackoverflow.com/questions/785 ... ng-options
Мобильная версия