原生Ajax写法

相关链接:https://blog.csdn.net/qq_30101879/article/details/77916622

原生Ajax的使用:

 function ajax(url){
        var xhr = window.XMLHttpRequest ? new XMLHttpRequest() : ActiveXObject("microsoft.XMLHttp")
        xhr.open("get",url,true);
        xhr.send();
        xhr.onreadysattechange = () =>{
            if(xhr.readystate == 4){
                if(xhr.status == 200){
                    var data = xhr.responseTEXT;
                    return data;
                }
            }
        }    
    }

get方式

post方式

 

你可能感兴趣的:(ajax,JavaScript)