AJAX XMLHttpRequest 服務器響應
ajax - 服務器 響應
服務器響應
如需獲得來自服務器的響應,請使用 xmlhttprequest 對象的 responsetext 或 responsexml 屬性。
屬性 | 描述 |
---|---|
responsetext | 獲得字符串形式的響應數據。 |
responsexml | 獲得 xml 形式的響應數據。 |
responsetext 屬性
如果來自服務器的響應并非 xml,請使用 responsetext 屬性。
responsetext 屬性返回字符串形式的響應,因此您可以這樣使用:
responsexml 屬性
如果來自服務器的響應是 xml,而且需要作為 xml 對象進行解析,請使用 responsexml 屬性:
實例
請求 cd_catalog.xml 文件,并解析響應:
xmldoc=xmlhttp.responsexml;
txt="";
x=xmldoc.getelementsbytagname("artist");
for (i=0;i<x.length;i++)
{
txt=txt + x[i].childnodes[0].nodevalue + "<br>";
}
document.getelementbyid("mydiv").innerhtml=txt;
嘗試一下 ?