选择国家后,我有一个很好的功能来填充度假村下拉框。现在,使用 jquery 1.6,度假村下拉框不再填充。有谁知道是什么原因造成的。
function populate_country() {
$.getJSON('/v3/ajax/fetch_resort.php', {country:$('#country').val()}, function(data) {
var select = $('#resorts');
var options = select.attr('options');
$('option', select).remove();
$.each(data, function(index, array) {
options[options.length] = new Option(array['resort']);
});
});
}
$(document).ready(function() {
$("#country").click(function(){
// populate_country();
$('#country').change(function() {
$loading.show();
populate_country();
$("#resorts").show("fast");
});
});
});