在行动中,我有一个变量,上面有吸气剂。
private String myActionVariable = "predefined....";
public String getMyActionVariable () {
return myActionVariable;
}
在 jsp 中,我尝试以这种方式使用我的变量:
<input type="button" class="styledButton"
onclick="javascript: doAjax('myActionName',false);"
value="${myActionVariable}"
但它没有显示。但是,如果我从同一 jsp 文件中包含的 javascript 代码中输出此变量:
alert (${myActionVariable})
我会得到它的价值......
请问有什么想法吗?...