我仔细检查了我的代码,但找不到我做错的部分。每次,我单击按钮,它都不会从我的 generate.php 中检索文件
索引.PHP
<html>
<head>
<title>Title</title>
<script type="text/javascript">
function myLoad(){
if(window.XMLHttpRequest){
xmlhttp = new XMLHttpRequest();
}else{
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
}
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
document.getElementById('par').innerHTML == xmlhttp.responseText;
}
}
xmlhttp.open('GET', 'generate.php', true);
xmlhttp.send();
}
</script>
</head>
<body>
<div id="par"></div>
<input type="button" value="Click" onclick="myLoad();">
</body>
</html>
生成.PHP
<?php
echo 'Hello';
?>