0
$.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"). 为什么?

4

1 回答 1

0

问题解决了。对不起。朋友有没有端口的链接,答案不是来自页面。

于 2012-11-15T09:16:10.347 回答