jquery Ajax使用jquery 1.3.2处理chrome而不是firefox

时间:2013-06-03 21:21:57

标签: jquery ajax

我以前从未遇到过这样的事情。我一直在研究Jquery Ajax,并设法使它们适用于所有浏览器,但是这个问题让我感到沮丧。

这是我的JS:

$(function(){
        $('#crmgrpsub').click(function () {
            var status;
            var crmgrpid = $("#crmgrpid").val();

            if($("#crmsecured").attr("checked")){
                status = 1;
            }else{
                status = 0;
            }
            // alert(status);
            if(status == 0){
                alert("hello");
                $.ajax({
                    url: "securezones/ajax_zoneoperations.php",
                    data: "zid="+crmgrpid+"&action=delete",
                    type: 'POST',
                    success: function(data){

                    }
                });
            }
        });
    });

我能够在所有浏览器上提醒Hello,所以问题出在$ .ajax上,这对Chrome工作正常但在firefox上我在ajax的post请求上得到了一个关于firebug的红色,任何原因导致它无法提交FF 21.0?或者这可能是其他一些ajax干扰这个是什么是我检查它是否真的只是另一个ajax调用弄乱我当前的ajax的最佳方式?

谢谢

0 个答案:

没有答案