0
基於已接受的答案here,我試圖從for循環中調用該函數以加載本地域中某些頁面的內容,但我只獲得結果對於第一頁,這隻有當我評論的線。 這是我的代碼:Ajax:將多個頁面內容加載到變量中
function ready()
{
var from = 0, to = sites.length;
var xmlhttp=false;
var content = '';
for(from; from < to; from++)
{
loadDoc(sites[from]);
if(xmlhttp==false)
{
setTimeout(loadDoc(pages[from]), 1000); //try every sec.
}
else
{ content = xmlhttp.responseText;}
}
}
我在做什麼錯誤/丟失?提前致謝。