永发信息网

xmlhttprequest解析xml出错

答案:2  悬赏:30  手机版
解决时间 2021-08-11 21:50
  • 提问者网友:我是女神我骄傲
  • 2021-08-11 02:55

xmlhttprequest对象已经创建好了!

 xmlHttp.onreadystatechange=callBack;

 xmlHttp.open("POST","AjaxXML",true); 

xmlHttp.send("username='"+name+"'");

这个是callback方法

function  callBack()
{
    alert(xmlHttp.readyState);
//   接受服务器端返回的数据
//    readyState的值等于4是表示对象与服务器端交互成功的
    if(xmlHttp.readyState == 4)
    {     //status的值等于200,表示http与服务器交互成功
          if(xmlHttp.status== 200)
          {
              //获取服务器端返回的数据
              var domobj=xmlHttp.responseXML;

              var message=domobj.getElementsByTagName("message");
              if(message.length>0)
              var text=message[0];
              else
              document.getElementById("result").innerHTML=xmlHttp.responseText;;
          }

    }

}

 

最佳答案
  • 五星知识达人网友:时间的尘埃
  • 2021-08-11 03:39

难道什么都没有返回吗?

全部回答
  • 1楼网友:神的生死簿
  • 2021-08-11 04:19
网页的问题,改设置也没用
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯