2013-10-02 76 views
1

說,片段name="<%=(String) curItr.next()%>"返回shoppingList。在html:text標記中。連接字符串的名稱屬性Struts

我該如何使DOM元素的結果爲shoppingList[0].anotherList[1]?我試圖

name="<%=(String) curItr.next()%>" + shoppingList[0].anotherList[1],但它並不完全工作

完整的代碼片段:

<html:text indexed="true" name="<%=(String) 
curItr.next()%>"+"[0]" property="<%=(String) curItr.next()%>"/> 
+0

DOM元素與什麼? –

+0

只有一個字符串說「[0] .anotherList [1]」 – LaneLane

+0

這是一個問題或答案? –

回答

0

這是不可讀的,你不應該使用小腳本,使用JSTL了點。

<html:text property="propertyNameOfYourBean"/> 

對於您應該使用<c:forEach>標記的列表。

相關問題