将值从 JSP 传递给 JavaScript
<% if(empRecNum != null && !(empRecNum.equals("")))
{
empSelected=true;
}
boolean canModify = UTIL.hasSecurity("PFTMODFY") && empSelected;
%>
<script type="text/javascript">
function add(){
alert(canModify);
df('ADD');
}
</script>
我需要提醒 JavaScript 中的 canModify
<% if(empRecNum != null && !(empRecNum.equals("")))
{
empSelected=true;
}
boolean canModify = UTIL.hasSecurity("PFTMODFY") && empSelected;
%>
<script type="text/javascript">
function add(){
alert(canModify);
df('ADD');
}
</script>
I need to alert the canModify in my JavaScript
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我知道我使用这样的东西:
'<%= %>'标签允许您放入 java 变量的值。
I know I use something like this:
The '<%= %>' tag lets you put in the value of the java variable.
摆脱使用 scriptlet,使用 jstl 和表达式语言,它看起来像这样:
Get away from using scriptlets, use jstl and expression language and it would look like this:
做一些类似的事情。
Do some thing like.