我有所谓的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。谁能帮我吗?提前致谢...