js清空缓存,ajax
$.ajax({
url:'',
dataType:'json',
data:{},
beforeSend :function(xmlHttp){
xmlHttp.setRequestHeader("If-Modified-Since","0");
xmlHttp.setRequestHeader("Cache-Control","no-cache");
},
success:function(response){
//操作
},
async:false
});
原本的post方法提交的数据 可改成ajax,post没有那beforeSend参数