在实际应用的时候,重新刷新页面的时候,我们通常使用: location.reload() 或者是 history.go(0) 来做。因为这种做法就像是客户端点F5刷新页面,所以页面的method=”post”的时候,会出现”网页过期”的提示。那是因为Session的安全保护机制。
可以想到: 当调用 location.reload() 方法的时候, aspx页面此时在服务端内存里已经存在, 因此必定是 IsPostback 的。
如果有这种应用: 我们需要重新加载该页面,也就是说我们期望页面能够在服务端重新被创建, 我们期望是 Not IsPostback 的。这里,location.replace() 就可以完成此任务。被replace的页面每次都在服务端重新生成。
<script language=”JavaScript”>
//document.referrer 前一个页面的URL
location.replace(document.referrer);
</script>
不要用 history.go(-1),或 history.back();来返回并刷新页面,这两种方法不会刷新页面。
<meta http-equiv=”refresh” content=”20″>
其中20指每隔20秒刷新一次页面<meta http-equiv=”refresh” content=”20;url=http://www.baidu.con”>
其中20指隔20秒后跳转到http://www.baidu.con页面<script language=”JavaScript”>
function myrefresh(){
window.location.reload();
}
setTimeout(‘myrefresh()’,1000); //指定1秒刷新一次
</script>
<body onload=”opener.location.reload()”> 开窗时刷新
<body onUnload=”opener.location.reload()”> 关闭时刷新
<script language=”javascript”>
window.opener.document.location.reload()
</script>
本文转自: https://fddcn.cn/js-shuxin.html 请支持原创