Javascript:清除重定向缓存

时间:2012-04-26 18:49:44

标签: javascript caching cookies

我可以使用location.reload(true)刷新页面并重新获取页面。我想将用户重定向到新的URL并清除缓存。

更具体地说,我有一个"清除所有cookie"单击后将用户重定向到主页的按钮。我希望主页能够刷新。

2 个答案:

答案 0 :(得分:9)

做类似的事情:

var loc = window.location.href; // or a new URL
window.location.href = loc + '?n=' + new Date().getTime(); // random number

编辑:重新加载静态资源的唯一选项(请参阅下面的评论)是通过侦听'n'查询字符串将随机数附加到其服务器端的URL。

答案 1 :(得分:-3)

很抱歉,您使用Javascript can't clear the cache