ajax responseText responseXML獲得返回執行個體

來源:互聯網
上載者:User

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title> new document </title>
<meta name="generator" content="editplus">
<meta name="author" content=www.111cn.net>
<meta name="keywords" content="">
<meta name="description" content="">
</head>

<body>

<script language="網頁特效" type="text/javascript">
<!--
//建立瀏覽器安全色的xmlhttprequest對象
var xmlhttp;
try{
 xmlhttp= new activexobject('msxml2.xmlhttp');
}catch(e){
 try{
  xmlhttp= new activexobject('microsoft.xmlhttp');
 }catch(e){
  try{
   xmlhttp= new xmlhttprequest();
  }catch(e){}
 }
}
//定義xmlhttprequest對象的事件處理常式
xmlhttp.onreadystatechange=function(){
 if(xmlhttp.readystate==4){
  if(xmlhttp.status==200){
   alert(xmlhttp.responsetext);
  }else{
   alert(xmlhttp.status);
  }
 }
}
//建立一個串連
xmlhttp.open("get","a.html");
//發送請求
xmlhttp.send(null);
//-->
</script>

</body>
</html>


a.html

<html>
<head>
<title> new document </title>
</head>
<body>
hello,ajax!www.111cn.net
</body>
</html>


返回responsexml詳細執行個體。

<script language="javascript" type="text/javascript">
<!--
//建立跨瀏覽器的xmlhttprequest對象
var xmlhttp;
try{
 xmlhttp= new activexobject('msxml2.xmlhttp');
}catch(e){
 try{
  xmlhttp= new activexobject('microsoft.xmlhttp');
 }catch(e){
  try{
   xmlhttp= new xmlhttprequest();
  }catch(e){}
 }
}
//建立一個對xml檔案的請求
xmlhttp.open("get","a.xml");
xmlhttp.onreadystatechange=function(){
 if(xmlhttp.readystate==4){
  if(xmlhttp.status==200){
   //擷取xml對象
   var xmlobj=xmlhttp.responsexml;
   //擷取<title>結點的值
   var title=xmlobj.getelementsbytagname("title")[0].text;
   alert(title);
  }else{
   alert(xmlhttp.status);
  }
 }
}
xmlhttp.send(null);
//-->
</script>

a.xml

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.