首页 > 代码库 > 浏览器用户返回上一步,自动刷新

浏览器用户返回上一步,自动刷新

方式一、
<input type="hidden" id="refreshed" value="http://www.mamicode.com/no">
<script type="text/javascript">
onload=function(){
var e=document.getElementById("refreshed");
if(e.valuehttp://www.mamicode.com/=="no")e.value="http://www.mamicode.com/yes";
else{e.value="http://www.mamicode.com/no";location.reload();}
}
</script >
方式二、
header("Cache-Control: no-store, must-revalidate, max-age=0");
header("Pragma: no-cache");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");

浏览器用户返回上一步,自动刷新