以下代码在 Google Chrome 中运行良好,但在 Firefox 中运行不正常。我无法提出请求,也无法收到回复。我不知道是什么问题?
这是我的 Javascript 代码。
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
// alert(str);
xmlhttp.open("GET","server url/folder/file.php?q="+"string",true,"user","password");
alert();
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
alert("response");
alert(xmlhttp.responseText);
var string=xmlhttp.responseText;
}
}
xmlhttp.send();
这是我会响应的服务器脚本。
<?php
header('Access-Control-Allow-Origin: *');
$q=$_GET["q"];
echo $q;
?>