$.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與響應的螢火蟲和完善,仍沒有成功或錯誤被調用。任何人都可以幫忙嗎?