在使用 $.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);
可悲的是,没有“这行得通!” 显示消息...感谢您的帮助!