要使用Ajax中的responseXML,你可以按照以下步驟進行操作:
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && xhr.status === 200) {
// 在這里處理響應
}
};
xhr.open('GET', 'url', true); // 第三個參數(shù)為true表示異步請求
xhr.send();
if (xhr.readyState === 4 && xhr.status === 200) {
// 在這里處理響應
}
var xmlDoc = xhr.responseXML;
var title = xmlDoc.getElementsByTagName('title')[0].childNodes[0].nodeValue;
注意:在使用responseXML之前,確保服務器返回的是有效的XML文檔,并且Content-Type標頭被設置為text/xml或application/xml。如果響應不是有效的XML文檔或Content-Type不正確,responseXML將為null。