javaweb 自动刷新

3秒后跳转到 另一个页面
html文件
<meta http-equiv="refresh" content="3;url=index.jsp">


// 这个可能会出现缓存,导致无法刷新
response.setHeader("Refresh","5;URL=http://localhost:8080/Day926/index.jsp");


不添加路径就是刷新本页面。

你可能感兴趣的:(html,javaweb)