ajax的 responseXML返回接受 asp

人生路上我们孜孜不倦,尽力拼搏,生活途中勤勤恳恳,努力追寻!停止悲伤,机会从来不为任何人驻足。
第一个文件index.asp
<scriptlanguage="javascript">
varxmlHttp=false;//ajax使用
try{
xmlHttp=newActiveXObject("Msxml2.XMLHTTP");
}catch(e){
try{
xmlHttp=newActiveXObject("Microsoft.XMLHTTP");
}catch(e2){
xmlHttp=false;
}
}
if(!xmlHttp&&typeofXMLHttpRequest!='undefined'){
xmlHttp=newXMLHttpRequest();
}
functioncallserver()
{
varurl="index.asp";
xmlHttp.open("POST",url,true);
xmlHttp.onreadystatechange=update;
xmlHttp.setrequestheader("content-type","application/x-www-form-urlencoded");
xmlHttp.send(null);
}
functionupdate()
{
if(xmlHttp.readystate==4)
{
varxmldoc=xmlHttp.responseXML
varinfo=xmldoc.getElementsByTagName("info")[0].text;
alert(info);
}
}
callserver();
</script> 第二个login.asp <%
Response.ContentType="text/xml"
response.Write("<?xmlversion='1.0'encoding='GB2312'?>")
response.Write("<root>")
response.Write("<info>loveyou</info>")
response.Write("</root>")
%>

以上就是ajax的 responseXML返回接受 asp。小人的眼睛里没有君子,君子的眼睛却可以识破小人。更多关于ajax的 responseXML返回接受 asp请关注haodaima.com其它相关文章!

标签: ajax responseXML