Скрипт ниже, в пхп обработчике получаю отправленные данные:
в action все нормально получаю showRegionForInsert или showRegionForInsert
а вот в id_country получаю 0, мне нужно строку из вал как получить?
<optgroup label="Выберите страну">
<option value="bel">Белоруссия</option>
<option value="rus">Россия</option>
<option value="ukr">Украина</option>
function selectRegion(){
var id_country = $('select[name="country"]').val();
if(!id_country){
$('div[name="selectDataRegion"]').html('');
$('div[name="selectDataCity"]').html('');
}else{
$.ajax({
url: "index.php?r=sgpc",
data: { action: 'showRegionForInsert', id_country: id_country },
cache: false,
success: function(responce){ $('div[name="selectDataRegion"]').html(responce); }
});
};
};
function selectCity(){
var id_region = $('select[name="region"]').val();
$.ajax({
url: "index.php?r=sgpc",
data: { action: 'showCityForInsert', id_region: id_region },
cache: false,
success: function(responce){ $('div[name="selectDataCity"]').html(responce); }
});
};