在jquery中调用ajax文件时出现问题



下面的代码可以在chrome浏览器中使用,但不能在mozilla中使用。如何在mozilla firefox中解决此问题。

$(document).ready(function() {
   $("#del_enquiry").click(function() {
        var enquiry = new Array();
            $('input[name="del_enq"]:checked').each(function() {
            enquiry.push(this.value);
        });
        if(confirm("Do you want to delete the Records"))
        {
            var delid="deleteid="+enquiry;
            $.ajax({
                 url: "delete_enquiry.php",
                 type: "POST",
                 data: delid,
                 cache: false,
                 success: function(data) {
                        if(data==1) { 
                           alert("Record Deleted Successfully"); 
                        } else { 
                           alert("Record not Deleted"); 
                       }
                }
            });
        }
    });
}); 

您可以在提交表单之前使用表单标记函数的onsubmit atttribue。在我的功能内写下你的确认框条件。if(确认("是否要删除?"){返回true;}

相关内容

  • 没有找到相关文章

最新更新