-2
jquery ajax應該調用testing(propertyLevelId)函數。jquery ajax應該調用函數
function name(roleId) {
$.ajax({
url: '../UserManagement/GetRoleLevel' + '/?roleId=' + roleId,
type: "POST",
dataType: "json",
contentType: 'application/json',
//async: false,
success: function (result) {
$.each(result, function (key, value) {
alert(value.Value);
propertyLevelId = value.Value;
testing(propertyLevelId);//It doesnt call the function
},
complete: function() { },
error: ServiceFailed// When Service call fails
});
}
function testing(propertyLevelId) {
alert(propertyLevelId);
}
它確實調用函數...除非它首先出錯,但是您沒有告訴我們它做了什麼,告訴我們您是如何檢查錯誤,還是向我們顯示了您正在使用的數據。 – Quentin
嘗試解釋更多正在發生的事情....例如它是否到達了循環?你會得到你在foreach的第一行中指定的警報嗎? –