XMLHttpRequest responseText屬性

admin發表於2018-10-29

此屬性返回一個字串響應資料。

更多關於XMLHttpRequest物件內容可以參閱ajax XMLHttpRequest物件一章節。

語法結構:

[JavaScript] 純文字檢視 複製程式碼
str=XMLHttpRequest.responseText

程式碼例項:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script>
function loadXMLDoc(){
  var xmlhttp;
  if (window.XMLHttpRequest){
    xmlhttp=new XMLHttpRequest();
  }
  else{
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
  xmlhttp.onreadystatechange=function(){
    if(xmlhttp.readyState==4 && xmlhttp.status==200){
      document.getElementById("show").innerHTML=xmlhttp.responseText;
    }
  }
  xmlhttp.open("GET","demo/ajax/txt/demo.txt",true);
  xmlhttp.send();
}
window.onload=function(){
  var obt=document.getElementById("bt");
  obt.onclick=function(){
    loadXMLDoc();
  }
}
</script>
</head>
<body>
<div id="show"><h2>原來的內容</h2></div>
<button type="button" id="bt">檢視效果</button>
</body>
</html>

點選按鈕後,程式碼執行效果截圖如下:

a:3:{s:3:\"pic\";s:43:\"portal/201810/29/182402qnn2o5oss5oav9ac.png\";s:5:\"thumb\";s:0:\"\";s:6:\"remote\";N;}

這些文字內容都是通過responseText屬性返回的。

相關文章