0

出于某种原因,我在让 AJAX 在不同的 Web 浏览器上正常工作时遇到了奇怪的问题。有什么特别需要的,或者有什么技巧可以让事情顺利进行吗?

我遇到的第一个问题是以下问题,它在 Chrome 中完美运行,但在 ie 和 firefox 中什么也没做:

function DeleteRideshare(pid){
    if (window.XMLHttpRequest){// code for IE7+, Firefox, Chrome, Opera, Safari
      xmlhttp=new XMLHttpRequest();
    }
    else{// code for IE6, IE5
      xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }           
    // Verify
    var conf = confirm("Are you sure you want to delete this rideshare?");
    if(conf == true){
        xmlhttp.open("POST","updaterideshare.php",true);
        xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
        xmlhttp.send("delete=true&PostID="+pid);    
        location.reload();                      
    }           
}   

我也有这个,它适用于chrome中的一些元素,而在ie和firefox中根本不适用:

$(document).ready(function(){
    $("#EditRideshareAjax").submit(function(){
        // Stop the from from submiting normally
        event.preventDefault();         

        // get the values from the elements on the page
        var values = $(this).serialize();

        $.ajax({
            type: "POST",
            url: "updaterideshare.php",
            data: values,
            success:     function(msg){                                         
                location.reload();
            },
            error:function(){
                alert("An error has occured, please try again");
            }
         });
    });
});

任何帮助或见解将不胜感激!谢谢!

4

1 回答 1

1

您不必在函数中将事件作为参数传递然后使用它。

           $("#EditRideshareAjax").submit(function(event){
于 2013-04-26T05:21:04.527 回答