我有两个JSP
------------------------------------
first.jsp
.....
<jsp:include page="second.jsp"/>
....
<div id='anotherId' >
how to include that secound.jsp 's div tag
</div
-------------------------------------
second.jsp
....
<div id='abc'>
</div>
------------------------------------------
我这样做的原因意味着我在JSP中有很多条件检查我不想将所有这些条件都集中到一个JSP中,所以我将它分成小div并且我想从我的JSP中访问它。只是为了拥有干净的代码
帮我分类一下。