这是我的JS脚本
function fillCities(country) {
console.log('fillCities', country);
var url = 'ajax.php?action=getVilles&country='+country+'&ville=%QUERY';
console.log('url', url);
$('#city').typeahead('destroy');
$('#city').typeahead({
name : 'city',
displayKey: 'city',
valueKey: 'city',
limit:10,
cache: false,
minLength:3,
remote: {
url : url
}
});
}
问题是:当国家/地区发生变化时,预先输入请求始终是SAME网址并且不会更改网址!
如何动态更改网址(网址内的国家/地区参数)?