AJAX XMLHttpRequest 服务器响应

ajax - 服务器 响应

服务器响应

如需获得来自服务器的响应,请使用 xmlhttprequest 对象的 responsetext 或 responsexml 属性。

属性 描述
responsetext 获得字符串形式的响应数据。
responsexml 获得 xml 形式的响应数据。

responsetext 属性

如果来自服务器的响应并非 xml,请使用 responsetext 属性。

responsetext 属性返回字符串形式的响应,因此您可以这样使用:

实例

document.getelementbyid("mydiv").innerhtml=xmlhttp.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;

尝试一下 »
相关文章