<jsp:param>标签在那里。
例如
<jsp:include page="/WEB-INF/include.jsp"> <jsp:param name="position" value="top" /></jsp:include>...<jsp:include page="/WEB-INF/include.jsp"> <jsp:param name="position" value="bottom" /></jsp:include>
在上面的示例中,可以
${param.position}在include JSP内部使用该值:<c:if test="${param.position == 'top'}"> This is a top include.</c:if><c:if test="${param.position == 'bottom'}"> This is a bottom include.</c:if>


