问与答 javascript-可以将xhr.onreadystatechange替换为AJAX调用的xhr.onload吗?
我只需要支持主要的现代浏览器(IE10 +,FF,Chrome,Safari)
我可以简化我的代码库吗?
从:
xhr.onreadystatechange = function () {
if (this.readyState === 4) {
if (this.status === 200) {
o.callback(xhr.responseText);
} else {
return false;
}
} else {
return false;
}
};
至:
xhr.onload = function (test) {
o.callback(xhr.responseText);
};
我认为MDN文档在这方面并不明确。
澄清:
我选择不使用框架。
猜你喜欢: