jquery ajax在firefox中失败但对chrome来说没问题

时间:2014-05-31 05:30:33

标签: javascript php jquery ajax

以下javascript无法在firefox中运行test.php,但在Chrome中运行正常。
如果我使用$ .ajax而不是$ .post,那么在firefox和chrome中都可以 是什么原因引起的?

    < script type = "text/javascript"
charset = "utf-8" > $(document).ready(function () {
    var mail = 'aa@bb.com';
    var message = 'hello';
    $('#button1').click(function () {
        var radiovalue = $(":radio:checked").val();
        if (radiovalue == 'yes') {
            $.post('test.php', {
                a1: mail,
                a2: message
            },

            function (data, status) {
                alert("data:" + data + "\nstatus:" + status);
            });
        };
    });
}); < /script>

0 个答案:

没有答案