<%! %>中声明的是全局变量,不过写前面最好
<% %>中声明的是局部变量。
<%=%>一般表达式,输出某一变量的值。
例如:
<%!
String totalString = "GoodBye World!";
%> <%
out.println("<h1>"+totalString+"</h1>");
%>
或者:
<%=totalString%>
2022-11-19 17:56:11
<%! %>中声明的是全局变量,不过写前面最好
<% %>中声明的是局部变量。
<%=%>一般表达式,输出某一变量的值。
例如:
<%!
String totalString = "GoodBye World!";
%> <%
out.println("<h1>"+totalString+"</h1>");
%>
或者:
<%=totalString%>
下一篇:Legal or Not