0

在使用 $.ajax 之前,我先创建一个普通对象。所以我可以在加载请求之前添加其他键/值来配置请求:

var options =   {
    type: "GET",
    url: url,
    dataType: 'json',
    cache: false,
    success: function(msg){
        alert('This works!');
        cfunc(msg);
        delete xmlPool[key];
    }
};


xhr = $.ajax(options);

可悲的是,没有“这行得通!” 显示消息...感谢您的帮助!

4

1 回答 1

1

值得添加一个错误块来检查是否发生了一些错误?

error: function (e, textStatus, errorThrown) {
    alert(errorThrown);
}
于 2013-08-07T10:11:52.003 回答