JavaScript写一个Ajax

本文介绍了一种使用JavaScript实现AJAX请求的方法。包括了创建请求对象、设置请求方式、发送请求及处理响应的过程。示例代码展示了如何进行GET和POST请求,并设置请求头。

js实现ajax

var xmlHttpReq = null;
if(window.ActiveXObject) {
    xmlHttpReq = new ActiveXObject('Microsoft.XMLHTTP');
} else if(window.XMLHttpRequest) {
    xmlHttpReq = new XMLHttpRequest();
}
xmlHttpReq.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xmlHttpReq.open('GET','test.php',true);
xmlHttpReq.onreadystatechange = function(){
    if(xmlHttpReq.readyState === 4) {
        if(xmlHttpReq.status === 200) {
            alert(xmlHttpReq.responseText);
        }
    }
};
xmlHttpReq.send(null);

例子如下:

submit.onclick = function(){
    var xmlHttpReq = null;
    if(window.ActiveXObject) {
        xmlHttpReq = new ActiveXObject('Microsoft.XMLHTTP');
    } else if(window.XMLHttpRequest) {
        xmlHttpReq = new XMLHttpRequest();
    }
    xmlHttpReq.open('POST','http://10.2.229.82:8088/api/friend',true);
    xmlHttpReq.onreadystatechange = function(){
        if(xmlHttpReq.readyState === 4) {
            if(xmlHttpReq.status === 200) {
                alert(xmlHttpReq.responseText);
            }
        }
    };
    xmlHttpReq.send("a=1,b=2");
};

如果要设置请求头的话:

submit.onclick = function(){
    var xmlHttpReq = null;
    if(window.ActiveXObject) {
        xmlHttpReq = new ActiveXObject('Microsoft.XMLHTTP');
    } else if(window.XMLHttpRequest) {
        xmlHttpReq = new XMLHttpRequest();
    }

    xmlHttpReq.open('POST','http://10.2.229.82:8088/api/friend',true);
    xmlHttpReq.setRequestHeader("Content-Type","application/x-www-form-urlencoded");  
    xmlHttpReq.onreadystatechange = function(){
        if(xmlHttpReq.readyState === 4) {
            if(xmlHttpReq.status === 200) {
                alert(xmlHttpReq.responseText);
            }
        }
    };
    xmlHttpReq.send("a=1,b=2");
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值