$.ajax({
url: "captcheck.php",
type: "GET",
data: "code="+captcha.val(),
cache: false,
success: function (html) {
if (html==1) {
captcha.removeClass('validation-error',animateSpeed);
return true;
}
else {
captcha.addClass('validation-error',animateSpeed);
return false;
}
},
error: function(httpRequest, textStatus, errorThrown) {
alert("status=" + textStatus + ",error=" + errorThrown);
}
});
现在这是一个非常简单的 ajax 函数,但它既没有被调用成功,也没有错误,我检查了 XHR 对 firebug 的响应和它的完美,仍然没有成功也没有错误被调用。有人可以帮忙吗?