AJAX 獲取伺服器響應資料
XMLHttpRequest物件的responseText或者responseXML屬性可以獲取來自伺服器的響應內容。
兩個屬性功能列表如下:
一.responseText屬性:
如果來自伺服器響應內容不是XML,那麼要使用responseText屬性來獲取。
此屬性返回值是字串格式的,使用方式演示如下:
[JavaScript] 純文字檢視 複製程式碼document.getElementById("show").innerHTML=xmlhttp.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>
點選按鈕可以獲取文字檔案中的內容,並通過responseText屬性寫入到div中。
二.responseXML屬性:
如果來自伺服器的響應是XML,並且需要作為XML物件進行解析,需要使用responseXML屬性。
程式碼片段如下:
[JavaScript] 純文字檢視 複製程式碼var xmlDoc = xmlhttp.responseXML;
responseXML屬性的返回值是一個XML物件,完整物件例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; 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) { var xmlDoc = xmlhttp.responseXML; var str = ""; var targets = xmlDoc.getElementsByTagName("target"); for (index = 0; index < targets.length; index++) { str = str + targets[index].childNodes[0].nodeValue + "<br>"; } document.getElementById("show").innerHTML = str; } } xmlhttp.open("GET", "demo/ajax/xml/XML.xml", true); xmlhttp.send(); } window.onload = function () { var obt = document.getElementById("bt"); obt.onclick = function () { loadXMLDoc(); } } </script> </head> <body> <div> <div id="show"></div> <input id="bt" type="button" value="檢視效果"/> </div> </body> </html>
點選按鈕可以測試相應的效果。
相關文章
- datatables使用ajax獲取資料
- ajax實現定時從伺服器獲取資料伺服器
- 二、傳送請求,獲取響應資料
- 【Django】ajax 非同步重新整理獲取資料Django非同步
- 通過JQuery ajax獲取伺服器時間jQuery伺服器
- ajax為什麼需要json格式響應資料?JSON
- 怎麼在ajax外邊使用ajax裡面在後端獲取的資料後端
- curl 請求獲取響應時間
- jQuery : ajax獲取Status CodejQuery
- 使用ajax指令碼取資料指令碼
- ajax接受json響應JSON
- jquery實現的ajax請求獲取json資料程式碼jQueryJSON
- 前臺怎樣獲取後臺ajax資料簡單介紹
- HttpURLConnection 獲取指定URL的響應字串HTTP字串
- python requests讀取伺服器響應Python伺服器
- Jmeter 請求 websocket 獲得的響應資料不全JMeterWeb
- 通過PowerShell獲取TCP響應(類Telnet)TCP
- ckeditor獲取資料
- ajax讀取資料庫資料程式碼例項資料庫
- Vue響應式—-資料響應式原理Vue
- Vue響應式----資料響應式原理Vue
- 自己做一個table外掛 (一)Ajax獲取資料後動態生成table
- 獲取Wireshark資料流
- 1.獲取資料
- Modbus ASCII 獲取資料ASCII
- JQuery中ajax和JSON的獲取jQueryJSON
- Response響應字元資料字元
- jquery的ajax請求servlet與響應jQueryServlet
- 使用ajax獲取伺服器檔案最後修改日期程式碼例項伺服器
- API介面在電商商品資料獲取中的應用API
- datatables 獲取 pageLength 和 pageStart,重新獲取table資料
- php 與 ajax 獲取123的案例PHP
- ajax獲取有空格,phpincluderequire檔案有空格PHPUI
- 【譯】React如何獲取資料React
- Mysql批量大資料獲取MySql大資料
- 獲取天氣介面資料
- 從session中獲取資料Session
- 微信小程式—— 獲取資料微信小程式