Почему xmlhttp.status всегда равен 0?

Это только из-за политики "того же происхождения" или что-то не так с кодированием. Я спрашиваю, потому что я совершенно новичок в JS! Любая помощь будет оценена!

<html>
<head>
<script type="text/javascript">
function loadXMLDoc()
{
var xmlhttp= new XMLHttpRequest();
xmlhttp.onreadystatechange=function()
  {

    if (xmlhttp.readyState==4 && xmlhttp.status==200)
     {
       document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
     }
  }
xmlhttp.open("GET","https://sb-ssl.google.com/safebrowsing/api/lookup?client=demoapp&apikey=KEY&appver=1.5.2&pver=3.0&url=http%3A%2F%2Fklairproducts.com%2Fwp-content%2Fademins.html",true);

xmlhttp.send();

}

</script>
</head>
<body>

<div id="myDiv"><h2>is the link phishing?</h2></div>
<button type="button" onclick="loadXMLDoc()">Lets see</button>

</body>
</html>

2 ответа

Решение

Вы не можете выполнять междоменный XMLHttpRequests. Возможно, причина для 0 xmlhttp.status

Вы получили статус 0 во всех браузерах?

Попробуйте это в старых браузерах Goldie, таких как IE 7, и установите минимальный уровень безопасности.

Другие вопросы по тегам