Ajax 异步调用 本地文件 Http status == 0

 本来不大想搞Web开发的 但是迫于就业压力 先学着再说
试着写了个简单的Ajax异步调用 按照我的书上写的 HTTP status == 200 才是访问成功
但是我的程序却总是等于0
我们都对一些常用的HTTP status 比较熟悉
例如404 网页不存在  500 服务器错误   400 客户端错误 300 路由改变
这个0我以前还真没见过
以下是源码
XMLFile.xml
< table >
    
< tbody >
        
< tr >
            
< th > Name </ th >
            
< th > Sex </ th >
            
< th > Age </ th >
        
</ tr >
        
< tr >
            
< th > zhaohongliang </ th >
            
< th > male </ th >
            
< th > 22 </ th >
        
</ tr >
        
< tr >
            
< th > khh </ th >
            
< th > female </ th >
            
< th > 33 </ th >
        
</ tr >
    
</ tbody >
</ table >
HTMLPage.html
< html  xmlns ="http://www.w3.org/1999/xhtml" >
    
< head >
        
< title > Hello Ajax </ title >
        
< script  type ="text/javascript" >
            
var xhr;
            
function createXhr() {
                
if(window.ActiveXObject) {
                    xhr 
= new window.ActiveXObject("Microsoft.XMLHTTP");
                }

                
else if(window.XMLHttpRequest) {
                    xhr 
= new XMLHttpRequest();
                   

                }

            }

            
function asyncMethod() {
                createXhr();
                 xhr.onReadyStateChange 
= function () {
                    
if(xhr.readyState==4
                        
//if(xhr.status==200) 
                        //alert(xhr.status);
                        document.getElementById("mytext").innerHTML=xhr.responseText;
                }

                xhr.open(
"get","XMLFile.xml");
                xhr.send(
null);
            }

        
</ script >
    
</ head >
    
< body >
        
< div  id ="mytext" > 这里是旧数据 </ div >
        
< input  type ="button"  value ="更新DIV"  onclick ="asyncMethod()"   />
    
</ body >
</ html >
后来我把文件路径由本地的XMLFile.xml改成我的博客 http://blog.csdn.net/nyzhl

HTTP status 结果变为 200 原来访问本地文件成功的代码是0
200是访问网络文件成功的代码

注:以上代码在FireFox中有问题 知道怎么回事的请跟帖 谢谢
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值