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参数

posted on 2017-12-14 17:14  summerkxy  阅读(269)  评论(0编辑  收藏  举报

导航