zoukankan      html  css  js  c++  java
  • 原生ajax

    
    var Ajax = {
        get: function(url,fn){
            // XMLHttpRequest对象用于在后台与服务器交换数据
            var xhr=new XMLHttpRequest();
            xhr.open('GET',url,false);
            xhr.onreadystatechange=function(){
                // readyState == 4说明请求已完成
                if(xhr.readyState==4){
                    if(xhr.status==200 || xhr.status==304){
                        console.log(xhr.responseText);
                        fn.call(xhr.responseText);
                    }
                }
            }
            xhr.send();
        },
    
        // data应为'a=a1&b=b1'这种字符串格式,在jq里如果data为对象会自动将对象转成这种字符串格式
        post: function(url,data,fn){
            var xhr=new XMLHttpRequest();
            xhr.open('POST',url,false);
            // 添加http头,发送信息至服务器时内容编码类型
            xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
            xhr.onreadystatechange=function(){
                if (xhr.readyState==4){
                    if (xhr.status==200 || xhr.status==304){
                        // console.log(xhr.responseText);
                        fn.call(xhr.responseText);
                    }
                }
            }
            xhr.send(data);
        }
    }
    
  • 相关阅读:
    高二下期末考试
    LG月赛.7
    CF1187E
    P5440 【XR-2】奇迹
    P1084 疫情控制
    P1083 借教室
    P2680 运输计划
    P3128 [USACO15DEC]最大流Max Flow
    博弈入门
    HDU 1907
  • 原文地址:https://www.cnblogs.com/smzd/p/12321341.html
Copyright © 2011-2022 走看看