0

我有两个select盒子。一个带有城市列表,第二个带有城市区。select当我从第二个框中的第一个框中选择(通过单击)城市时,我会看到所选城市的地区。这工作得很好,但是当另一个脚本自动选择城市时,地区列表不显示 - 我必须从列表中手动选择城市,然后出现地区列表。

这是我的脚本:

$.viewMap_get = {
    '0' : $([]),
    'Katowice' : $('#c1a, #c1b, #c6, #c7'),
    'Kraków' : $('#c2a, #c2b, #c6, #c7'),
    'Warszawa' : $('#c3a, #c3b, #c6, #c7'),
    'Wrocław' : $('#c4a, #c4b, #c6, #c7'),
    'Gdańsk' : $('#c5a, #c5b, #c6, #c7'),
};

$.each($.viewMap_get, function() { this.hide(); });
$('#get_city_district').hide();

$('#get_car').change(function() {
// hide all
$.each($.viewMap_get, function() { this.hide(); });
  $('#get_city_district').hide();
// show current
$.viewMap_get[$(this).val()].show();
  $('#get_city_district').show();
  var id = $.viewMap_get[$(this).val()].attr("id");   
  $('#'+id).attr('selected', 'selected');
});

有人可以帮忙吗?

4

1 回答 1

0

我认为您应该将所选城市的获取区绑定到

$('firstSelect').change(function(){
// your code
})
于 2012-07-31T10:05:30.777 回答