0

所以我有这个代码:

function checkStatus()
{
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=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {

if (xmlhttp.responseText == "1") {
document.getElementById("maincontent").innerHTML = '<br/><br/><center>Please refresh the page to continue.</b></center>';
}
    }
  }
xmlhttp.open("GET","file.php?id=1",true);
xmlhttp.send();
}

我想知道最后两行(xmlhttp.open 和 xmlhttp.send),它们的功能是什么?同样,当我使用浏览器转到文件 file.php?id=1 时,它只显示“0”,而代码的一般功能是在我执行特定操作后将我重定向到网站并且我相信数据已存储在 file.php?id=1 但我如何从浏览器中看到它?注意:我不是 HTML/PHP 程序员,但我了解基础知识

4

1 回答 1

1

之前的行xmlhttp.open()只是创建XMLHttpRequest将处理 AJAX 连接的对象。调用xmlhttp.open()是实际打开连接和xmlhttp.send()发送请​​求所必需的。只有在请求发送后,处理程序才能接收和处理响应onreadystatechange

然而,这段代码看起来相当过时。我建议不要XMLHttpRequest直接使用,而是使用库 -例如,请参阅jQuery 。

于 2013-05-31T20:50:31.443 回答