$.ajax({type: "GET",url: "/" + filename,dataType: "xml",cache: "false",success: function(xml) { /* Parsing code here */ }});
在Chrome等等,请求不缓存,但是它们在IE中.我正在建造我的要求吗?
$.ajax({type: "GET",cache: false,success: function(xml){ /* Parsing code here */ } });