码迷,mamicode.com
首页 > 其他好文 > 详细

自已封装Ajax方法

时间:2014-06-15 07:58:05      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   java   http   ext   

function createXHR() {
    var request;
    if (typeof (XMLHttpRequest) == ‘undefined‘) {
        request = new ActiveXObject(‘Microsoft.XMLHTTP‘);
    } else {
        request = new XMLHttpRequest();
    }
    return request;
}

var xhr = createXHR();

function ajax(method, url, isAsync, data, fnsuccess, fnerror) {
    xhr.open(method, url, isAsync);
    if (method.toLocaleLowerCase() == ‘post‘) {
        xhr.setRequestHeader(‘Content-Type‘, ‘application/x-www-form-urlencoded‘);
    }
    xhr.onreadystatechange = function () {
        if (xhr.readyState == 4) {
            if (xhr.status == 200) {
                return fnsuccess(xhr.responseText);
            } else {
                return fnerror();
            }
        }
    };
    xhr.send(data);
}

function get(url, fnsuccess) {
    return ajax("get", url, true, null, fnsuccess, null);
}

function post(url, data, fnsuccess) {
    return ajax("post", url, true, data, fnsuccess, null);
}

 

自已封装Ajax方法,布布扣,bubuko.com

自已封装Ajax方法

标签:class   blog   code   java   http   ext   

原文地址:http://www.cnblogs.com/lhl98/p/3785901.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!