Ajax响应未在成功函数内显示

如何显示代码的ajax响应? 当我使用async=true ,显示的yy值只是最后一个值; 我需要显示从0a所有值。 它与async=false一起工作正常。 这是我的代码:

 for(var jj=0;jj<a;jj++){ var yy=jj; var ins=12 var rou=13 /* */ $.ajax({ type:"GET", url:"Select.php", async:false, data:"rou="+rou+ "&ins="+ins, success : function(t){ $("#truk"+yy).text(t); // Response not shown here } //success }); } 

但无论如何,这是你正在寻找的ajax调用的结果:

 var syncResult = $.ajax('/echo/json/', { async: false }); document.write(syncResult.responseText); 

在这里看到它: http : //jsfiddle.net/alligator/6MsuZ/