我正在尝试将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);
}
它不起作用。 我想念什么?