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

AJAX

时间:2014-05-23 09:29:58      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:class   blog   c   code   java   ext   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
var SydAjax = {
    ajax:function(opt){
        var xhr = this.createXhrObject();
        xhr.onreadystatechange = function(){
            if(xhr.readyState!=4) return ;
            (xhr.status===200 ?
                opt.success(xhr.responseText,xhr.responseXML):
                opt.error(xhr.responseText,xhr.status));
        }
        xhr.open(opt.type,opt.url,true);
        if(opt.type!==‘post‘)
            opt.data=null;
        else
            xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
        opt.data = this.parseQuery(opt.data);
        xhr.send(opt.data);
    },
    post:function(url,success,data){
        var popt = {
            url:url,
            type:‘post‘,
            data:data,
            success:success,
            error:function(data){}
        }
        this.ajax(popt);
    },
    get:function(url,success){
        var gopt = {
            url:url,
            type:‘get‘,
            success:success,
            error:function(){}
        }
        this.ajax(gopt);
    },
    createXhrObject:function(){
        var methods = [
            function(){ return new XMLHttpRequest();},
            function(){ return new ActiveXObject(‘Msxml2.XMLHTTP‘);},
            function(){ return new ActiveXObject(‘Microsoft.XMLHTTP‘);}
        ];
        for(var i=0;len=methods.length,i<len;i++){
            try{
                methods[i]();
            }catch(e){
                continue;
            }
            this.createXhrObject = methods[i];
            return methods[i]();
        }
        throw new Error(‘Could not create an XHR object.‘);
    },
    parseQuery:function(json){
        if(typeof json == ‘object‘){
            var str = ‘‘;
            for(var i in json){
                str += "&"+i+"="+encodeURIComponent(json[i]);
            }
            return str.length==0 ? str : str.substring(1);
        }else{
            return json;
        }
    }
};

  

AJAX,布布扣,bubuko.com

AJAX

标签:class   blog   c   code   java   ext   

原文地址:http://www.cnblogs.com/invincible-hehe/p/3737912.html

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