我只是做了一个简单的AJAX应用程序,以便我的html页面可以通过ajax.js文件从php文件中获取一些数据,我已经将它们放在服务器中,所以当我访问localhost/mypage时,它应该被执行,但是似乎存在一些问题,因此事情并没有像我预期的那样发生。
这是我的html文件:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<META http-equiv="Content-Type" Content="text/html; Charset=UTF-8">
<title>
My Portal
</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
<script type="text/javascript" src="ajax.js"></script>
</head>
<body onload="load()">
<div id="header">
<img src="images/logo.gif" id="logo" alt="Logo"/>
<a href="http://www.google.com">
<img src="images/logo2.png" id="logo2" align="right" alt="google Ltd"/>
</a>
</div>
<div id="container">
<div id="function"></div>
<div id="Display"></div>
<div id="View"></div>
</div>
<div id="footer">
</div>
</body>
</html>
下面是js文件:
function load(){
var xmlhttp;
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){
document.getElementById("function").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","test.php", true);
xmlhttp.send();
}
最后是php文件:
<?php
print "<h1>hgfkegfalhgj</h1>";
?>
我希望它应该在我的页面中打印出上面的 char 字符串,但是,什么都不能显示,谁能告诉我问题出在哪里?我检查了我已经在浏览器中启用了 javascript,所以我很确定我的 html 文件可以调用 js 文件中的函数。