-1

このコードを機能させようとしていますが、エラーが発生します。実行されていないようです。

jQuery.post("getResults.php", {id:id} , function(data)
        {
            jQuery("select#kDate").removeAttr("disabled");
            jQuery("select#kDate").html(data);
        })
        .success(function() { alert("second success"); })
        .error(function() { alert("error"); })
        .complete(function() { alert("complete"); });
     });

どんな助けでもいただければ幸いです。

4

2 に答える 2

3

エラー関数には 3 つのパラメーターがあります。

 error(jqXHR, textStatus, errorThrown)

これを試して:

error(function(xhr, status, detail) { alert("error ("+status+") : " + detail); });

ドキュメントはこちら: http://api.jquery.com/jQuery.ajax/

于 2012-12-28T20:14:27.177 に答える
0

これを試してください:ここでも見ることができます。

var id = "some-value";
jQuery.post("getResults.php?id="+id, function(data) {
  jQuery("select#kDate").removeAttr("disabled");
  jQuery("select#kDate").html(data);
})
.success(function() { alert("second success"); })
.error(function() { alert("error"); })
.complete(function() { alert("complete"); });
于 2012-12-28T20:22:51.927 に答える