所以我有这个代码:
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 程序员,但我了解基础知识