我想知道在存在多个选定下拉列表的位置单击或更改了哪个下拉列表。我有两个具有国家和州下拉菜单的容器。我想要做的是,当单击国家下拉列表时,与单击的国家下拉列表位于同一容器中的状态下拉列表将填充获取的数据。
我的 js 代码如下;
var xhr , a;
var country, $country;
var city, $city;
$country = $(".select2-country").selectize({
render: {
option: function(item, escape) {
var markup = "<div>";
if (item.value !== undefined && item.value != 0) {
markup += '<img width="25px" src="http://www.geonames.org/flags/x/' + item.value.toLowerCase() + '.gif" /> ';
}
markup += item.text;
markup += '</div>';
return markup;
}
},
onChange: function(value) {
if (!value.length) return;
console.log(this);
city.disable();
city.clearOptions();
city.load(function(callback) {
xhr && xhr.abort();
xhr = $.ajax({
url: draSite + '?index.php&option=com_dratransport&view=',
dataType: 'json',
data:{
selected: value,
task: 'getCities',
},
success: function(results) {
city.enable();
callback(results);
},
error: function() {
callback();
}
});
});
}
});
$city = $('.select2-city').selectize({
valueField: 'value',
labelField: 'text',
searchField: ['text'],
sortField: 'sort',
sortDirection: 'ASC',
diacritics:true,
});
city = $city[0].selectize;
//country = $country[0].selectize;
city.disable();