У меня есть поле выбора, содержащее страны, и когда оно выбрано, я хочу, чтобы мои данные автозаполнения для поля города загружались через ajax.
вот мой код:
// Sets up the autocompleter depending on the currently
// selected country
$(document).ready(function() {
var cache = getCities();
$('#registration_city_id').autocomplete(
{
source: cache
}
);
cache = getCities();
// update the cache array when a different country is selected
$("#registration_country_id").change(function() {
cache = getCities();
});
});
/**
* Gets the cities associated with the currently selected country
*/
function getCities()
{
var cityId = $("#registration_country_id :selected").attr('value');
return $.getJSON("/ajax/cities/" + cityId + ".html");
}
Возвращает следующий json: ["Aberdare", "Aberdeen", "Aberystwyth", "Abingdon", "Accrington", "Airdrie", "Aldershot", "Alfreton", "Alloa", "Altrincham", ""Амерши», "Andover", "Антрит", "Арброит", "Ardrossan", "Арнольд", "Ашфорд", "Ашингтон", "Ashton-под-Лайн", "Атэртон", "Эйлсбери", "Эра", ...]
Но это не работает.Когда я начинаю печатать в поле города, стиль меняется, поэтому автозаполнение что-то делает, но не отображает эти данные.Если я жестко запрограммировал вышеприведенное, это работает.
Кто-нибудь может увидеть, что случилось?
Спасибо