我在代码
下面运行$.ajax({
url: 'ajax/category.php',
type: 'POST',
data: {pre: array},
dataType: "json",
success: function(e) {
if (e === 'NO') {
document.getElementById("region").innerHTML = '<option value="" selected="selected">No Category Available</option>';
} else {
document.getElementById("region").innerHTML = e;
}
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
而且它应该在Success :
中为我的“选择”返回一些值,但它会在error:
我可以知道,为什么成功没有显示响应,错误必须popup
响应。