页面刷新

1、用JavaScript刷新当前的页面:document.location.reload();

 

2、子窗口刷新父窗口:

window.opener.location.href=window.opener.location.href;

window.close();

 

 3、强制载入后刷新一次
加入以下代码:

<script>
if(window.name != "bencalie"){
    location.reload();
    window.name = "bencalie";
}
else{
    window.name = "";
}
</script>


也可禁止缓存,重新进入页面

<meta http-equiv="Expires" CONTENT="0">
<meta http-equiv="Cache-Control" CONTENT="no-cache">
<meta http-equiv="Pragma" CONTENT="no-cache">

你可能感兴趣的:(JavaScript,cache)