1. 程式人生 > >實現瀏覽器點選後退鍵重新整理介面

實現瀏覽器點選後退鍵重新整理介面

在工作中需要一個瀏覽器後臺並且重新整理

在jsp中加入程式碼:<%
response.setHeader("Pragma","no-cache");   
response.setHeader("Cache-Control","no-cache");   
response.setDateHeader("Expires", 0);   
response.setHeader("Cache-Control", "no-store");

%>

就沒有快取了。實現瀏覽器後退並且重新整理。