AJAX XMLHttpRequest 服務(wù)器響應(yīng)
ajax - 服務(wù)器 響應(yīng)
服務(wù)器響應(yīng)
如需獲得來(lái)自服務(wù)器的響應(yīng),請(qǐng)使用 xmlhttprequest 對(duì)象的 responsetext 或 responsexml 屬性。
屬性 | 描述 |
---|---|
responsetext | 獲得字符串形式的響應(yīng)數(shù)據(jù)。 |
responsexml | 獲得 xml 形式的響應(yīng)數(shù)據(jù)。 |
responsetext 屬性
如果來(lái)自服務(wù)器的響應(yīng)并非 xml,請(qǐng)使用 responsetext 屬性。
responsetext 屬性返回字符串形式的響應(yīng),因此您可以這樣使用:
responsexml 屬性
如果來(lái)自服務(wù)器的響應(yīng)是 xml,而且需要作為 xml 對(duì)象進(jìn)行解析,請(qǐng)使用 responsexml 屬性:
實(shí)例
請(qǐng)求 cd_catalog.xml 文件,并解析響應(yīng):
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;
嘗試一下 ?