jQuery AJAX到纯js

时间:2019-04-21 14:12:00

标签: javascript jquery ajax

我正在尝试将JQuery代码更改为JavaScript xhttp

这是我的jQuery

var sendRequest = function(){
    $.ajax({
        url: urlIn, 
        data: dataIn,
        type: typeIn,
        success: funcSuccess,
        error: funcError,
    });
};

这是我的JavaScript。

var sendRequest = function() {
 var xhttp = new XMLHttpRequest();
  xhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
        funcSuccess(this.responseText);
    }else{
        funcSuccess(this.responseText);
    }
  };
  xhttp.open(typeIn, urlIn, true);
  xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
  xhttp.send(dataIn);   

}

它不起作用。 我想念什么?

0 个答案:

没有答案