主頁 > 知識庫 > ajax的 responseXML返回接受 asp

ajax的 responseXML返回接受 asp

熱門標(biāo)簽:姜堰電銷機器人 海南銀行智能外呼系統(tǒng)商家 遼寧正規(guī)電銷機器人 澳大利亞城市地圖標(biāo)注 電銷機器人違法了嗎 上海浦東騰訊地圖標(biāo)注位置 許昌智能電銷機器人公司 辰溪地圖標(biāo)注 遼寧銀行智能外呼系統(tǒng)
第一個文件   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學(xué)習(xí)筆記2 使用XMLHttpRequest對象的responseXML
  • Ajax request response 亂碼解決方法
  • Ajax Throws Sys.WebForms.PageRequestManagerErrorException with Response.Redirect的解決方法
  • 關(guān)于Ajax中通過response在后臺傳遞數(shù)據(jù)問題

標(biāo)簽:深圳 撫州 晉城 伊春 威海 崇左 銅川 西藏

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ajax的 responseXML返回接受 asp》,本文關(guān)鍵詞  ajax,的,responseXML,返回,接受,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ajax的 responseXML返回接受 asp》相關(guān)的同類信息!
  • 本頁收集關(guān)于ajax的 responseXML返回接受 asp的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章