主页 > 知识库 > ajax的 responseXML返回接受 asp

ajax的 responseXML返回接受 asp

热门标签:银行业务 Mysql连接数设置 服务器配置 阿里云 科大讯飞语音识别系统 Linux服务器 团购网站 电子围栏
第一个文件   index.asp
script language="javascript">
var xmlHttp = false;    //ajax使用
try {
  xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
  try {
    xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
  } catch (e2) {
    xmlHttp = false;
  }
}
if (!xmlHttp  typeof XMLHttpRequest != 'undefined') {
  xmlHttp = new XMLHttpRequest();
}
function callserver()
{
 var url = "index.asp";
 xmlHttp.open("POST",url,true);
 xmlHttp.onreadystatechange = update;
    xmlHttp.setrequestheader("content-type","application/x-www-form-urlencoded");
 xmlHttp.send(null);
}
function update()
{
 if(xmlHttp.readystate==4)
 {
  var xmldoc=xmlHttp.responseXML
  var info = xmldoc.getElementsByTagName("info")[0].text;
  alert(info);
 }
}
callserver();
/script>

 

第二个   login.asp

%
Response.ContentType="text/xml"
response.Write("?xml version='1.0' encoding='GB2312' ?>")
response.Write("root>")
response.Write("info>love you/info>")
response.Write("/root>")
%>
您可能感兴趣的文章:
  • Ajax中responseText返回的是一个页面而不是一个值
  • ajax的responseText乱码的问题的解决方法
  • jquery ajax学习笔记2 使用XMLHttpRequest对象的responseXML
  • Ajax request response 乱码解决方法
  • Ajax Throws Sys.WebForms.PageRequestManagerErrorException with Response.Redirect的解决方法
  • 关于Ajax中通过response在后台传递数据问题

标签:江苏 大理 广元 萍乡 枣庄 蚌埠 衢州 衡水

巨人网络通讯声明:本文标题《ajax的 responseXML返回接受 asp》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266