更改JSP中变量的值
我对 JSP 相当陌生,我了解到要创建一个变量,你可以这样说
<%String abc="1"; %>
如果我想更改为 abc 的值,我使用了这个,
<%= abc = "2" %> //Is this the right way??
但是这个值显示在我的 JSP 页面上,我该如何让它不显示在我的 jsp 页面中。
I am fairly new to JSP , i learned that to create a variable you say this
<%String abc="1"; %>
If i want to change to value of abc I used this
<%= abc = "2" %> //Is this the right way??
But this value is shown on my JSP page how do I make it not show in my jsp page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您的问题的简短答案是删除
=
。<%= %>
计算并打印内容。<% %>
之间的任何内容都只是标准的 java 代码。所以,你想要The short answer to your question is remove the
=
. The<%= %>
evaluates and prints the contents. Anything between<% %>
is just standard java code. So, you want更改
为
删除“=”
Change
To
Delete the "="
JSP 表达式用于将 Java 值直接插入到输出中。它具有以下形式:
请参阅: http: //www.apl.jhu.edu/~hall/java/Servlet-Tutorial/Servlet-Tutorial-JSP.html
仅使用一个
=
运算符来更改 abc 的值。http://faculty.cs.wwu.edu/meehan/Programming_Language_Projects/JSP/
A JSP expression is used to insert Java values directly into the output. It has the following form:
refer: http://www.apl.jhu.edu/~hall/java/Servlet-Tutorial/Servlet-Tutorial-JSP.html
Using only one
=
operator to change value of abc.http://faculty.cs.wwu.edu/meehan/Programming_Language_Projects/JSP/