欢迎来到福编程网,本站提供各种互联网专业知识!

ajax的 responseXML返回接受 asp

发布时间:2006-11-25 作者: 来源:转载
第一个文件index.aspvarxmlHttp=false;//ajax使用try{xmlHttp=newActiveXObject("Msxml2.XMLHTTP");}catch(e){try{xmlHttp=newActiveXObject("Microsoft.XMLHTTP");}catch(e2){xmlHttp=false;}}if(!xmlHttp&&typeofXMLHttpRequest!='undefined'){xmlHtt
第一个文件index.asp

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();

第二个login.asp

<%
Response.ContentType="text/xml"
response.Write("")
response.Write("")
response.Write("loveyou")
response.Write("
")
%>

相关推荐