$.get('./mods/webim_offline_email.php', {firstname: $('#webim_firstname').val(), email: $('#webim_email').val(), message: $('#webim_message').val()}, function (data){
alert(1);
$('#webim_offline_inputs').fadeOut(200);
$('#webim_message_div').fadeOut(200);
$('#webim_buttons').fadeOut(200);
$('#webim_offline_sent').fadeIn(200);
}).success(function(){
alert("second success");
}).error(function(){
alert("error");
}).complete(function(){
alert("complete");
});
请求 *.php 通过,函数内部的所有内容都可以正常工作。电脑上好友请求也通过了,但是jQuery认为他没有通过,功能没有通过,alert("error")
. 为什么?