清除当前页面缓存

$.ajax({
    type: "GET",
    url: "static/cache.js",
    dataType: "text",
    beforeSend :function(xmlHttp){
    xmlHttp.setRequestHeader("If-Modified-Since","0");
    xmlHttp.setRequestHeader("Cache-Control","no-cache");


       }
    });进入下一个页面或请求 执行一下这个方法,浏览器点后退进的是最新的页面不是缓存 jquery的方法

你可能感兴趣的:(jquery)