web-dev-qa-db-ja.com

1つのjspページを別のjspページにリダイレクトできますか

サーブレットのコードにアクセスせずにjspページを開きたいのですが。つまり、JSPコードに(action = "url")にURLを入力する必要も、サーブレットコードにアクセスする必要もありません。

<form id="main" method="post" name="main" action="dpRegPost" onsubmit="return validate();">

誰かが私を助けてくれますか?

5
Brain

これを試して:

<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();
}
2
Susheel Singh

JavaScriptをjspファイルに追加できます

<script type="text/javascript">
window.location.href = "www.google.com";
</script>

またはjspを使用

<%

    response.sendRedirect("www.google.com");
%>
6
Mustafa sabir

これも試すことができます

<jsp:forward page = "abc.jsp" />
5
Nerys

現在のjspページでjstlタグライブラリを使用します。以下のコードを使用してタグライブラリを利用可能にします

 <%@ taglib uri="http://Java.Sun.com/jsp/jstl/core" prefix="c" %>  

Jspで次のコードを使用してリダイレクトします

<c:redirect url="/xxx.jsp"/>
3
Naveen

以下を使用してページを直接呼び出すこともできます。

<jsp:redirect page="xyz.jsp" />
1
Pramod S. Nikam
use the following code to redirect on another page in js...

$('#abc_id').click(function() {
            updateSubContent("abc.jsp");
        });
0
Prashant