<a href="listBrand.html" onclick="bs('bs')">Новинки</a>
function bs(x) {
var xhr = new XMLHttpRequest();
xhr.open('GET', x, false);
xhr.onreadystatechange = function() {
if (xhr.readyState != 4) return;
if (xhr.status != 200) {
// обработать ошибку
alert(xhr.status + ': ' + xhr.statusText);
} else {
try {
alert(xhr.responseText)
} catch (e) {
alert("Некорректный ответ " + e.message);
}
}
}
xhr.send();
}
var http = require('http');
var url = require('url');
var querystring = require('querystring');
function accept(req, res) {
res.writeHead(200, {
'Content‐Type': 'text/plain',
'Cache‐Control': 'no‐cache'
});
res.end("OK");
}
http.createServer(accept).listen(8080);
console.log('Погнали')