我正在使用Cloud9 IDE。我的目标是能够开发使用JQuery AJAX的应用程序。
我有这两个文件:
<p class="result">the result</p>
<p class="result">the result</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script>
$.get('test.php', function(data) {
$('.result').html(data);
alert('Load was performed.');
});
</script>
`2。 test.php的
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script>
$.get('test.php', function(data) {
$('.result').html(data);
alert('Load was performed.');
});
</script>
问题是带有“结果”类的paragarph应该是“hello world”。相反,正在添加php文件的全部内容。
如何让php文件按预期回复“hello world”?
答案 0 :(得分:3)
您无法在Cloud9IDE中运行PHP脚本。这种可能性将在未来实施。
答案 1 :(得分:0)
您需要从安装了PHP的Web服务器调用您的.php脚本才能执行它,并且需要将其包装在<?php /*code*/ ?>
答案 2 :(得分:0)
您的PHP代码需要包含这些标记:
<?php echo "Hello world";?>
答案 3 :(得分:0)
你需要在php打开/关闭标签中包装php代码
<?php
echo "hello world";
?>