3

我有一个脚本,它调用彼此嵌套的 jQuery ajax 函数 - 该脚本适用于 Chrome 和 IE9,是否有它不想在 Firefox 中运行的原因?

代码贴在下面:

$.ajax({ 
                type: "POST", 
                cache: false, 
                url: "addwelder.php", 
                data: "mywelderid="+$welderid,
                success: function()
                {
                    $.ajax({ 
                        type: "GET", 
                        cache: false, 
                        url: "loadwelder.php", 
                        dataType: "json",
                        success: function(data)
                        {
                            $("#mywelders:last-child").append("<option value=" + data[0].toString() + ">" + data[1].toString() + "</option>");
                            $("#mywelders option:last").attr("selected","selected");
                        },
                        error: function(xhr, exc)
                        {
                            alert(xhr.status);
                            alert(exc);
                        }

                    });
                },
                error: function(xhr, exc)
                {
                    alert(xhr.status);
                    alert(exc);
                }

            });
4

0 回答 0