如何在jsp中编写scriptlet标记中的表达式标记?

时间:2017-01-22 15:29:00

标签: jsp

这是我要问的例子

<%
String variable="Value";
out.println("<input type='hidden' value="<%=variable%>" "/);
%>

1 个答案:

答案 0 :(得分:0)

在Scriptlet中,您可以使用如下的java语法:

<%
String variable="Value";
out.println("<input type='hidden' value='" + variable + "'>");
%>

但你应该尝试避免使用scriptlet。阅读更多: How to avoid Java code in JSP files?