Как сделать асинхронный запрос
Добрый вечер! Как сделать асинхронный запрос. Сделал так, но не работает:
xhttp=new XMLHttpRequest();
xhttp.open('POST','Server.php', false);
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.send('uid2=' +uid);
xhttp.onreadystatechange=function() {
if (xhttp.readyState==4 && xhttp.status==200)
{
q= xhttp.responseText;
alert(q);
}
|