AJAX-服务器响应
服务器响应 如需获得来自服务器的响应,请使用 XMLHttpRequest 对象的 responseText 或 responseXML 属性。 responseText 获得字符串形式的响应数据 document.getElementById("myDiv").innerHTML=xmlhttp.responseText; responseXML 获得XML形式的响应数据 xmlDoc = xmlhttp . responseXML ; txt = " " ; x = xmlDoc . getElementsByTagName ( " ARTIST " ) ; for ( i = 0 ; i < x . length ; i ++ ) { txt = txt + x [ i ] . childNodes [ 0 ] . nodeValue + " <br> " ; } document . getElementById ( " myDiv " ) . innerHTML = txt ; 注:xmlhttp是XMLHttpRequest 对象。 来源: https://www.cnblogs.com/1016391912pm/p/11863824.html