0

实际上我想在android phonegap 中调用一个带有jQuery mobile ajax 调用的php url。url 的可能结果是

  1. 如果成功则 - 有效
  2. 如果失败 -- 代码:201

我正在使用此代码,但它不起作用帮助我。

        var request = $.ajax({
            url : "http://URL.com/api/validate.php?user=myUser&password=myPassword",
            type : "GET"
        });

        request.done(function(msg) {
            $("#notification").text(request.val());
        });

        request.fail(function(jqXHR, textStatus) {
            alert("Request failed: " + textStatus);
        });
4

1 回答 1

1

实际上你可以把这些函数放在 ajax 方法中

 $.ajax({
   url : "http://URL.com/api/validate.php?user=myUser&password=myPassword",
   type : "GET",
   success : function(data){/*yr code here*/},
   fail: function(){/*yr code here*/}
 });
于 2013-02-19T07:32:20.863 回答