Hrefをクリックしたときにページを更新するには、次のようにします。
<a href="javascript:history.go(0)">Click to refresh the page</a>
私はこれを持っています
<meta http-equiv="no-cache">
ヘッドタグ内。それでも、キャッシュされたコピーを取得しています。キャッシュされたコピーのロードを回避するにはどうすればよいですか?
の代わりに
javascript:history.go(0);
あなたは使うかもしれません
javascript:window.location.reload();
あなたの<meta>
タグ、コンテンツ属性がありません。これを試して
<meta http-equiv="expires" content="0" />
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="expires" content="-1" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache" />
あなたも試すことができます
<a href="javascript:window.location.reload();">
しかし、それがキャッシングに関してどのように機能するかはわかりません
<a onclick="window.location.href=this">test</a>
これを試して:
<a class="refresh_link" href="javascript:void(0)">click to Refresh the Page</a>
<script type="text/javascript">
$(document).ready(function(){
$(".refresh_link").click(function(){
location.reload();
});
});
</script>
使用 jquery
これを試して
window.location.href=window.location.href