1

我正在尝试使用 jQuery 的 ajax 来调用 php 脚本 onload。此脚本将从 url Web 服务返回 xml,对其进行解析,然后在页面加载(onload)时将其部分显示到 div 标签中。在使用表单时,我对 php 没意见,但是让 php 脚本运行 onload 对我不起作用。有人可以看看我的代码并给我你的建议吗?提前致谢。

HTML:

<!doctype html>
<html>
  <head>

    <title>Word of the Day</title>

    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    <script src="code.js"></script>

  </head>
<body>

<h3>Word of the Day: </h3>
<div id="word_day"></div>

</body>
</html>

JavaScript:

$(document).ready(function() {

  $(window).load(function() {


    $.ajax({
      post: "GET",
      url: "word_day.php"
    }).done(function() {
      alert(this.responseText);
    }).fail(function() {
      alert(this.responseText);
    });


  });

});

我没有添加我的 PHP 代码,因为我很确定这不是我沮丧的原因。

4

1 回答 1

2

您不需要这两个处理程序,只需要一个:

$(document).ready(function() 
{
    $.ajax(
    {
        post: "GET",
        url: "word_day.php"
    }).done(function() 
    {
        alert(this.responseText);
    }).fail(function() 
    {
        alert(this.responseText);
    });

});

正如您所拥有的那样,您试图在处理程序触发时创建一个处理程序,但它永远不会起作用。

编辑:

您的完成/失败部分应如下所示:

}).done(function(data) 
{
    alert(data);
}).fail(function(jqXHR, textStatus, errorThrown) 
{
    alert(textStatus);
});
于 2013-02-14T01:11:54.810 回答