我有两个JSP页面a.jsp
和b.jsp
。并且 a.jsp 包括 b.jsp
a.jsp
<jsp:include page="b.jsp" >
<jsp:param name="pageName" value="create" />
</jsp:include>
我能够将变量pageName
的值传递给 b.jsp ,在这里我可以通过
b.jsp
<h1>This is a ${param.pageName} page<br>
<input type="text" name="userInput">
现在,我想将输入元素userInput
中的值发送回 a.jsp (我想将 b.jsp 用作子页面包含三个父jsp页面,并且所有三个父页面 a.jsp , b.jsp 和 c.jsp 的输入值都不同)
<h1>The user input entered in the child jsp is :<>
我该如何实现?