实际上我想在android phonegap 中调用一个带有jQuery mobile ajax 调用的php url。url 的可能结果是
- 如果成功则 - 有效
- 如果失败 -- 代码: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);
});