Ajax如何實(shí)現(xiàn)讀取多條新聞標(biāo)題數(shù)據(jù)?
首先,你這個(gè)標(biāo)題和內(nèi)容的JSON最好是一起返回。現(xiàn)在你分開(kāi)返回JSON的。兩者沒(méi)有任何對(duì)應(yīng)關(guān)系。 標(biāo)題可以調(diào)用,假設(shè)標(biāo)題返回的JSON保存到某個(gè)變量result里面 varcount=result.length; varhtml=""; for(vari=0;i<=count;i++) { html+='<divclass="news_title">'+result[i].news_title+'</div>'; html+='<divclass="news_releasetime">'+result[i].news_releasetime+'</div>'; } document.write(html); 或者 document.getElementById('xxx').innerHTML=html 兩種都可以在頁(yè)面上輸出。