0

我正在使用 Struts1;我正在使用逻辑迭代列表:迭代

<logic:iterate .... indexId="index">

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

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

sitax 如何访问 ctrl:button 标签内的正确“索引”属性?

谢谢

4

1 回答 1

0

我回答自己:

我可以使用 jsp-expression 语言访问“index”struts 变量。语法是

为了使它工作,我必须设置 <%@ page isELIgnored ="false" %>

于 2015-03-02T12:45:47.537 回答