在另一个 struts 标签中使用 struts 属性

using struts property in another struts tag

我正在使用Struts1; 我正在使用 logic:iterate

遍历列表
<logic:iterate .... indexId="index">

我想在按下按钮时使用 "index" 属性 作为参数传递给 javascript 函数

<ctrl:button ... onclick="return functioncall (index)"/>    

sitax 如何访问 ctrl:button 标签内的正确 "index" 属性?

谢谢

我自己回答:

我可以使用 jsp 表达式语言访问 "index" struts 变量。语法是

为了让它工作,我必须设置 <%@ 页面被ELIgnored ="false" %>