web-dev-qa-db-ja.com

リンクをクリックしたときにページを更新する

Hrefをクリックしたときにページを更新するには、次のようにします。

    <a href="javascript:history.go(0)">Click to refresh the page</a>

私はこれを持っています

    <meta http-equiv="no-cache"> 

ヘッドタグ内。それでも、キャッシュされたコピーを取得しています。キャッシュされたコピーのロードを回避するにはどうすればよいですか?

8
Benny

の代わりに

javascript:history.go(0);

あなたは使うかもしれません

javascript:window.location.reload();
12
Green Wizard

あなたの<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();">

しかし、それがキャッシングに関してどのように機能するかはわかりません

2
scrblnrd3
<a onclick="window.location.href=this">test</a>
2
NiksD

これを試して:

   <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

1
Istiaque Ahmed

これを試して

window.location.href=window.location.href
0
Rakesh Kumar