xmlhttp.status==200为什么不等于200而是等于0

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript">
function locadXMLDoc(){
var xmlhttp;

if(window.XMLHttpRequest){
//code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
}else{
//code for IE5, IE6
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}

xmlhttp.onreadystatechange=function(){

if(xmlhttp.readyState==4 && xmlhttp.status==200){//这个xmlhttp.status=0
alert("aaa");
alert(xmlhttp.status);
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;

}
}
xmlhttp.open("GET","ajax/test1.txt",true);
xmlhttp.send();

}
</script>
</head>

<body>
<div id = "myDiv"><h2>Let AJAX change this text</h2></div>
<button type="button" onclick="locadXMLDoc()">通过 AJAX 改变内容</button>

</body>
</html>
展开
 我来答
chenweidi232
推荐于2016-06-25 · TA获得超过674个赞
知道小有建树答主
回答量:858
采纳率:50%
帮助的人:395万
展开全部
xmlHttp.status==0
本地响应成功。
0表示本地,把if(xmlHttp.status==200)改成
if(xmlHttp.status==200 || xmlHttp.staus==0)
追问
那200和0的区别是什么啊
追答
如果在本地运行(如:C:\\ajax\\ helloworld.htm),那么status属性不管是在”成功”还是”页面未找到”的情况下,都返回的是0。
也就是说没有通过Web服务器形式的Ajax请求返回值都是0;
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式