我做了一个非常小的代码,我只想通过 ajax 通过 div 显示 echo 中的内容,但它显示了整个 php 脚本而不是 echo 中的内容,有人可以帮助我吗
<html>
<script type="text/javascript" >
function test() {
xmlHttp=new XMLHttpRequest();
if (xmlHttp !== null) {
xmlHttp.onreadystatechange=function() {
if(xmlHttp.readyState==4 && xmlHttp.status==200) {
var response = xmlHttp.responseText;
alert("Match");
alert(response);
document.getElementById('show').innerHTML = response;
}
}
}
xmlHttp.open("GET","try.php",true);
xmlHttp.send(null);
}
</script>
<body>
Enter answer: <input type="text" onKeyUp="test();"><br />
See returned value: <div id="show"></div>
</body>
</html>
这是我的 php 文件,我只是想检查它是否打印了 echo 中的内容,所以它很小
<?php
echo "i just want to see if this get's printed";
?>