我在嵌套for循环中进行AJAX调用。有时可能会出现错误状态。有没有办法在循环中跳过该特定情况并继续循环?请帮助。
for(i=0;i<n;i++){
$.ajax({
type: "GET",
url : url,
datatype: "json",
success : function(data){
// something here
},
error : function(xhr,status){
// skip this case i and continue loop. Please help
}
});
}