我有第一页所谓的 admin.jsp ,其中包含以下内容:
<c:if test="${param.action == 'testA'}">
<jsp:include page="testA.jsp" />
</c:if>
在 testA.jsp 中,它包含以下内容:
<%@include file="testB.jsp" %>
<%@include file="testC.jsp" %>
testC.jsp 中有很多html代码,例如:
<input type="hidden" id="checkA" value="check1">
<input type="hidden" id="checkB" value="check2">
我想在 testB.jsp 中使用它。我确实尝试使用request.getParameter(“checkA”)或request.getParameter(“checkB”),但它返回null。谁能帮我吗?提前谢谢......
答案 0 :(得分:0)
<portlet:defineObjects />
<%= renderRequest.getAttribute("add") %><br>