1. 程式人生 > >AJAX 請求 XML 格式的數據

AJAX 請求 XML 格式的數據

req 服務端 console pre sta elements 需要 htm app


<script>

var xhr = new XMLHttpRequest();
xhr.open(‘GET‘, ‘xml.php‘);
xhr.send();
xhr.onreadystatechange = function () {
if (this.readyState !== 4) return;
// this.responseXML 專門用於獲取服務端返回的 XML 數據,操作方式就是通過 DOM 的方式操作
// 但是需要服務端響應頭中的 Content-Type 必須是 application/xml
console.log(this.responseXML.documentElement.children[0].innerHTML);
console.log(this.responseXML.documentElement.getElementsByTagName(‘name‘)[0])
}

</script>

AJAX 請求 XML 格式的數據