我有以下
代码
$.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 */
}
});
原文链接:https://www.f2er.com/jquery/176290.html