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> 展开
<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> 展开
1个回答
展开全部
xmlHttp.status==0
本地响应成功。
0表示本地,把if(xmlHttp.status==200)改成
if(xmlHttp.status==200 || xmlHttp.staus==0)
本地响应成功。
0表示本地,把if(xmlHttp.status==200)改成
if(xmlHttp.status==200 || xmlHttp.staus==0)
追问
那200和0的区别是什么啊
追答
如果在本地运行(如:C:\\ajax\\ helloworld.htm),那么status属性不管是在”成功”还是”页面未找到”的情况下,都返回的是0。
也就是说没有通过Web服务器形式的Ajax请求返回值都是0;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询