, readystatechange. , :
xhr.onreadystatechange= function() {
if (this.readyState!==4) return;
if (this.status===200) {
alert(this.responseText);
} else {
}
};
xhr.open('GET', 'http://www.example.net/abc.aspx', true);
xhr.send();
:
("XMLHttpRequest" in window)
in, , , , , .
, IE7 +, native nativeHttpHttpRequest , XMLHttpRequest window, null. , ActiveX () , :
var xhr= window.XMLHttpRequest? new XMLHttpRequest() : new ActiveXObject('MSXML2.XMLHttp');