评论

收藏

[R语言] 用history.go(-1)返回上一页,实现上一页页面刷新

编程语言 编程语言 发布于:2021-08-03 10:24 | 阅读数:414 | 评论:0

可以用location.href=’你的页面!’

   Response.Redirect    Request.ServerVariables("HTTP_REFERER")  
   如果你不想这样用的话,可以在次页用history.go(-1),然后在上页设置Response.Buffer    =True  
   Response.ExpiresAbsolute    =Now()    -    1  
   Response.Expires=0  
   Response.CacheControl="no-cache"
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++强制载入后刷新一次
加入以下代码:
<script>
if(window.name != "bencalie"){
     location.reload();
     window.name = "bencalie";
}
else{
     window.name = "";
}
</script>
也可禁止缓存,重新进入页面




返回上一页代码:
返回上一页



关注下面的标签,发现更多相似文章