在我的代碼使用附加功能通過Ajax調用來獲得值:php:如何使給定ID的追加和追加不起作用?
type: 'POST',
url: 'include/LocationService.php?run=getDistrictBoundries',
data: {
level : $('#level').val(),
state : $('#stateId').val()
},
dataType: "json",
success: function (response) {
$('#distvalue').html('');
var districts = response.d;
$.each(districts, function (index, district) {
$('#distvalue').append('<option value="'+ district.geo_id+'">'+district.dist_name+'</option>');
console.log("districtname"+districts);
});
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
$("#error_msg").val(textStatus);
}
,但在上面的代碼:
$('#distvalue').append('<option value="'+ district.geo_id+'">'+district.dist_name+'</option>');
不工作。
所以我需要得到這個ajax調用values.how有可能嗎?
什麼不起作用?什麼是你的'console.log'語句打印?嘗試使用'console.log(「當前分區:」+分區);' – Ian