var xhr = new XMLHttpRequest();
var url = 'https://learn.javascript.ru/xhr-crossdomain';
xhr.open('GET', '/test.php?url=' + encodeURIComponent(url), true);
xhr.onreadystatechange = function(){
console.log(xhr.status);
if (xhr.readyState == 4) {
if (xhr.status == 200) {
console.log("результат: "+xhr.responseText);
}
}
}
xhr.send();
Все получил.
Спасибо Rise!