gpt4 book ai didi

javascript - 整个 php 代码被打印出来,而不仅仅是 echo 中的内容

转载 作者:搜寻专家 更新时间:2023-10-31 21:36:15 25 4
gpt4 key购买 nike

我编写了一个非常小的代码,其中我只想通过带有 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";
?>

最佳答案

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

关于javascript - 整个 php 代码被打印出来,而不仅仅是 echo 中的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18799169/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com