0

我正在尝试使用 Ajax 来告诉我我的服务器是否已启动。我用一个 Ajax 调用创建了一个简单的页面。当服务器启动时,它会返回 xmlhttp.responseText。如果服务器关闭,它应该说“服务器关闭”......但是当我加载页面时,然后关闭 Apache,它仍然说服务器已经启动。还有其他方法我应该这样做吗?

<!DOCTYPE html>
<html>
<head>
<script>
var xmlhttp;
var url = "http://192.168.0.5/ajax_info.txt";
function loadXMLDoc(url,cfunc)
{
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=cfunc;
xmlhttp.open("GET",url,true);
xmlhttp.send();
}
function myFunction()
{
loadXMLDoc(url,function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("myDiv").innerHTML = xmlhttp.responseText;
    }
  else
    {
    document.getElementById("myDiv").innerHTML = "Server Down!";
    }
  });
}
</script>
</head>
<body>

<div id="myDiv"><h2>Let AJAX change this text</h2></div>
<button type="button" onclick="myFunction()">Change Content</button>

</body>
</html>

谢谢您的帮助

4

1 回答 1

3

您的页面可能已缓存,请在 url 中使用缓存破坏器。例如

xmlhttp.open("GET",url+'?_dc='+(new Date()).getTime(),true);
于 2013-03-17T01:48:13.957 回答