web页面跳转记录
html:
<head>
<!-- 以下方式定时转到其他页面 -->
<!-- content 中的 0 表示刷新时间 -->
<meta http-equiv="refresh" content="0;url=hello.html">
</head>
js:
<script language="javascript" type="text/javascript">
// 以下方式直接跳转
window.location.href='hello.html';
// 以下方式定时跳转
setTimeout("javascript:location.href='hello.html'", 5000);
</script>
jsp
request.getRequestDispatcher("/webpage/message.jsp").forward(request,response);