我在我的 JS 函数中使用 struts 标记,即
var ptp = "<c:out value='${myFormBean.myVar[0]}'/>";
它通过从适当的bean中获取正确的值,但是我必须将它用于使用循环显示在那里的多行,这就是为什么我在函数中发送行的索引,但是当我尝试将该变量放入上面的行中,例如
function myFucn(ind){
var ptp = "<c:out value='${myFormBean.myVar[ind]}'/>";// this does not show any thing
//OR
var ptp = "<c:out value='${myFormBean.myVar['+ind+']}'/>";//This beaks the HTML
//OR
var ptp = "<c:out value='${myFormBean.myVar["+ind+"]}'/>";//This beaks the HTML
}
请帮助如何使用索引作为变量从上面的标签中获取值。提前致谢。