サーブレットのコードにアクセスせずにjspページを開きたいのですが。つまり、JSPコードに(action = "url")にURLを入力する必要も、サーブレットコードにアクセスする必要もありません。
<form id="main" method="post" name="main" action="dpRegPost" onsubmit="return validate();">
誰かが私を助けてくれますか?
これを試して:
<form id="main" method="post" name="main" action="" onsubmit="redirect(this);">
<input type="submit" name="submit"/>
</form>
function redirect(elem){
elem.setAttribute("action","somepage.jsp");
elem.submit();
}
JavaScriptをjspファイルに追加できます
<script type="text/javascript">
window.location.href = "www.google.com";
</script>
またはjspを使用
<%
response.sendRedirect("www.google.com");
%>
これも試すことができます
<jsp:forward page = "abc.jsp" />
現在のjspページでjstlタグライブラリを使用します。以下のコードを使用してタグライブラリを利用可能にします
<%@ taglib uri="http://Java.Sun.com/jsp/jstl/core" prefix="c" %>
Jspで次のコードを使用してリダイレクトします
<c:redirect url="/xxx.jsp"/>
以下を使用してページを直接呼び出すこともできます。
<jsp:redirect page="xyz.jsp" />
use the following code to redirect on another page in js...
$('#abc_id').click(function() {
updateSubContent("abc.jsp");
});