2

实际上,我正在尝试从以前的 HTML 页面返回,问题是页面得到刷新,而不仅仅是保留值。这是在 Chrome 和 Firefox 中,但在 Safari 中它工作得很好。

我正在使用 Html 缓存,如下所示。从控制台我可以看到文件被加载到缓存中,我还检查了网络文件正在从缓存中加载。我也有元标记。

<html  lang="ko" manifest="cache.manifest">
<head>
      <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
      <meta http-equiv="expires" content="Mon, 10 Jan 2013  00:00:00 GMT" />
      <meta http-equiv="Cache-Control" content="public" >

    </head>
</html>

我也试过这个链接https://www.webkit.org/blog/516/webkit-page-cache-ii-the-unload-event/但没用。

如何从缓存加载页面而不是单击返回时重新加载页面

4

1 回答 1

0

尝试:

Document.location.reload(false)

这应该从缓存中重新加载页面

于 2012-12-02T12:10:02.000 回答