我在linux机器上使用php。我的 html 代码向本地 apache 服务器 ( http://localhost )发出 ajax 请求,来自服务器的数据应该打印在屏幕上。但是,没有打印任何内容。
“客户端”端的代码(我在浏览器中加载的 html 文件)是:
<html>
<body>
<script language="javascript" type="text/javascript">
function ajaxFunction(){
var ajaxRequest; // The variable that makes Ajax possible!
try{
// Opera 8.0+, Firefox, Safari
ajaxRequest = new XMLHttpRequest();
} catch (e){
// Internet Explorer Browsers
try{
ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try{
ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e){
// Something went wrong
alert("Your browser broke!");
return false;
}
}
}
ajaxRequest.onreadystatechange = function(){
if( ajaxRequest.readyState == 4 ){
document.writeln( ajaxRequest.responseText );
}
}
ajaxRequest.open("GET", "http://localhost/s.php", true);
ajaxRequest.send(null);
}
</script>
</body>
</html>
并且“服务器”脚本(即 /var/www/s.php)是:
<html>
<body>
<?php
echo date("H:i:s");
?>
</body>
</html>
有什么建议么?
TIA