GET http://192.168.0.48/cgi-bin/ 403 (Forbidden)
_____________
Мой первый сайтик
Посмотри на свой XBMC под другим углом
GET http://192.168.0.48/cgi-bin/ 403 (Forbidden)
Цитата (arbuzmaster @ 31.01.2016 - 21:33) |
как получить текст ошибки |
im.src = 'http://192.168.0.48/cgi-bin/do?cmd=status';
Request Method:GET
Status Code:200 OK
Цитата (Invis1ble @ 1.02.2016 - 00:07) | ||
посмотри какие данные передаются в коллбэк onerror |
var im = new Image();
im.src = 'http://192.168.0.48/cgi-bin/do?cmd=status';
im.onload = function()
{
console.log('Server found. ' );
}
im.onerror = function()
{
console.log(' Server not found!');
}
im.onerror = function(event)
{
console.log(event); // ничего полезного
console.log(' Server not found!');
}