<%! %>中声明的是全局变量,不过写前面最好
<% %>中声明的是局部变量。
<%=%>一般表达式,输出某一变量的值。
例如:
<%!
String totalString = "GoodBye World!";
%>

<%
out.println("<h1>"+totalString+"</h1>");
%>
或者:
<%=totalString%>
posted on 2016-08-08 16:49  WesTward  阅读(722)  评论(0编辑  收藏  举报