1、response跳转:response.setHeader("refresh",“2;url=hello.htm”);
实现页面刷新,2秒后跳转到hello.htm界面上去。
2、静态页面跳转,可以在HEAD头部输入,实现跳转。
<mete http-equiv="refresh" content="2;url=hello.htm">
3,response还可以实现直接跳转,命令为:
response.sendRedirect
2024-03-21 17:01:04
1、response跳转:response.setHeader("refresh",“2;url=hello.htm”);
实现页面刷新,2秒后跳转到hello.htm界面上去。
2、静态页面跳转,可以在HEAD头部输入,实现跳转。
<mete http-equiv="refresh" content="2;url=hello.htm">
3,response还可以实现直接跳转,命令为:
response.sendRedirect