3

我做了一个非常小的代码,我只想通过 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";
?>
4

1 回答 1

1

检查浏览器开发控制台中的网络选项卡。在 Chrome 中,按 F12,转到“网络”选项卡,执行您的test()函数,然后检查网络结果中的相应响应。您可以在“响应”选项卡中查看结果。其他浏览器也应该存在类似的控制台。

于 2013-09-14T07:09:30.800 回答