正在加载图片...
include指令标签举例 test1.jsp <str="hello "str;%> <%include file="test2.jsp"%> <%=str%><br> <temp "hello "temp;%> 如果换成include <%=temp%>. test2.jsp 动作呢? <%String str="str";%> <String temp "temp";% test1.jsp显示结果: hello str hello tempinclude指令标签举例 test1.jsp <% str = "hello " + str;%> <%@ include file="test2.jsp" %> <%=str%><br> <% temp = "hello " + temp;%> <%=temp%>. test2.jsp <%! String str = "str";%> <% String temp = "temp"; %> test1.jsp显示结果: hello str hello temp 如果换成include 动作呢?
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有