在让他等待 10 秒或 10000 毫秒后,我试图将用户从一个 jsp 页面重定向到另一个 jsp 页面。但是一旦在浏览器中打开页面,就会有一个重定向。为什么会这样?下面的代码有什么问题吗?我正在调用redirectFunction
进行重定向的哪个。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP - 1</title>
<script>
function redirectFunction() {
<% response.sendRedirect("jsp-2.jsp"); %>
}
</script>
</head>
<body>
<h1>
Wait while you are redirected...
</h1>
<script type="text/javascript">
setTimeout(redirectFunc,10000); // wait for 10 seconds,then call redirectFunc
</script>
</body>