服务器没有使用AJAX回复响应

时间:2012-02-06 21:07:39

标签: php jquery ajax

我遇到了jQuery的$ .ajax问题。这有点奇怪,因为我在其他7个网站上使用了几乎相同的代码,并且没有任何问题。此外,在Web服务器上保存了此代码,其他$ .ajax请求也没有任何问题。

在你的下方你可以找到我的javascript代码:

<script>
    // Of course I link the jQuery file
    $.ajax({
        url: 'http://www.jasperstuyven.be/include/js/test.php',
        success: function(responsServer){
            alert("SUCCESS - Answer of the server is |" + responsServer + "|");
        }
    });
</script>

这个测试的php页面也非常简单:

<?php
   echo "TEST AJAX.PHP";
?>

问题是服务器没有回复文本'TEST AJAX.PHP',我也不知道为什么。

其他奇怪的是当我使用不存在的网址时,它仍会执行“成功动作”。很奇怪,不是吗?

有人可以帮助我吗?我重写了这段代码3天,却找不到错误。 提前谢谢!

1 个答案:

答案 0 :(得分:3)

<br是不是错字? 尝试

<script>
    // Of course I link the jQuery file
    $.ajax({
        url: 'http://www.jasperstuyven.be/include/js/test.php',
        success: function(responsServer){
            alert("SUCCESS - Answer of the server is |" + responsServer + "|");
        }
    });
</script>