zoukankan      html  css  js  c++  java
  • AJAX

    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;
            }
        }
    };
    

      

  • 相关阅读:
    Kubernetes 部署微服务电商平台(16)
    Android开发如何去除标题栏title
    eclipse中logcat偶尔不显示log的问题解决办法
    Two Sum
    事件的解除与绑定
    使用 Canvas 绘图
    表单脚本
    事件
    DOM2 和 DOM3
    DOM扩展
  • 原文地址:https://www.cnblogs.com/invincible-hehe/p/3737912.html
Copyright © 2011-2022 走看看