我以前从未遇到过这样的事情。我一直在研究 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){
}
});
}
});
});
我可以在所有浏览器上提醒你好,所以问题出在 $.ajax 上,这适用于 chrome,但在 firefox 上,我在 ajax 的发布请求上得到一个红色的 firebug,为什么它不会在 FF 21.0 上提交?或者这可能是其他一些 ajax 干扰这个我检查它是否真的只是另一个 ajax 调用与我当前的 ajax 混淆的最佳方法是什么?
谢谢