更改事件甚至没有在 mac chrome 上触发。适用于 chrome、firefox 和 ie 上的 win7,也适用于 mac 上的 firefox 和 safari。但不是在铬上。有任何想法吗?谢谢
编辑:它是一个下拉菜单......它基本上是一个州/城市选择器,我根据从数据库中选择的州加载城市。
<script type="text/javascript">
$(document).ready(function () {
$('#cod_estados').change(function(){
if( $(this).val() ) {
$('#cod_cidades').hide();
$('.carregando').show();
$.getJSON('cidades-ajax.php?search=',{cod_estados: $(this).val(), ajax: 'true'}, function(j){
var options = '<option value=""></option>';
for (var i = 0; i < j.length; i++) {
options += '<option value="' + j[i].cod_cidades + '">' + j[i].nome + '</option>';
}
$('#cod_cidades').html(options).show();
$('.carregando').hide();
});
} else {
$('#cod_cidades').html('<option value="">– Escolha um estado –</option>');
}
});
});
</script>