我有一个调用 php 文件并接收输出的 javascript 代码。我的 JavaScript 代码是
function properties(location) {
if(window.XMLHttpRequest)
xmlHttpRequest=new XMLHttpRequest();
else if(window.ActiveXObject)
xmlHttpRequest=new ActiveXObject("Microsoft.XMLHTTP");
xmlHttpRequest.open('GET','myfile.php?region='+region,true);
xmlHttpRequest.onreadystatechange=function() {
if(xmlHttpRequest.readyState==4)
alert(xmlHttpRequest.responseText);
}
xmlHttpRequest.send();
}
该代码在本地主机上运行良好,我收到了输出,但是当我在实时服务器上尝试它时,它不起作用,并且在浏览器的控制台中显示以下消息
[14:36:20.350] GET http://mysite.com/myfile.php?region=South [HTTP/1.1 301 Moved Permanently 807ms]
它还给了我另一个网址,非常感谢任何形式的帮助。