ajax请求失败处理方式 ajax请求失败怎么处理( 二 )


responseText —> 获取到的是字符串形式 。接收到可直接使用,无需转换 。
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;responseXML —> 获取到 XML 形式的数据 。使用时需要解析,如:
<person> <name>小米粒</name> <age>18</age> </person> 解析时:document.getElementsByTagName("name")[0]responseXML 目前已被 json 取代,所以作为了解就好 。
六、ajax实例var xhr ;if( window.XMLHttpRequest ){ xhr = new XMLHttpRequest()}else{ xhr = new ActiveXObject("Microsoft.XMLHTTP") //兼容IE6IE5}xhr.open('GET','1.txt',true)xhr.send()xhr.onreadystatechange = function(){ if(xhr.readyState==4){if(xhr.status>=200 && xhr.status<300 || xhr.status==304){console.log("请求成功",xhr.response) // 请求成功 abc}else{console.log("请求失败")} }}1.txt 文档内容为 abc 。所以返回的结果也是abc


以上关于本文的内容,仅作参考!温馨提示:如遇健康、疾病相关的问题,请您及时就医或请专业人士给予相关指导!

「四川龙网」www.sichuanlong.com小编还为您精选了以下内容,希望对您有所帮助: