序列化不在firefox上处理

时间:2014-06-24 09:34:53

标签: jquery

我对这个小代码感到奇怪

     $('#plac').click(function(){
    //Send data to the other script
    $.post( 'http://inwestycyjneprzebudzenie.pl/wp-content/plugins/newsletter/do/subscribe.php', $('form').serialize(), function(data, textStatus) {


    });
});

在谷歌浏览器上它可以工作,但在Firefox或其他任何浏览器上都没有。 我注意到我是否修改了代码

       $('#plac').click(function(){
    //Send data to the other script
    $.post( 'http://inwestycyjneprzebudzenie.pl/wp-content/plugins/newsletter/do/subscribe.php', $('form').serialize(), function(data, textStatus) {


    });
 alert ('Thanks');
});

它确实有效,但我不喜欢点击后发出警报,我该如何解决这个? ;)

0 个答案:

没有答案