你好看看我在jsp中的代码。
<s:iterator value="answeredquestions" status="status" var="question">
<fieldset>
<legend><s:property value="Question"/></legend>
<s:property value="QuestionNumber"/>
<table><s:radio label="Answer" name="answeredquestions[%{#status.index}].UserAnswer" list="AnswersOptions" /></table>
</fieldset>
</s:iterator>
<
列表似乎工作正常 但是在第一个列表项中,单选按钮不会进入字段集。
答案 0 :(得分:1)
请参阅有关主题http://struts.apache.org/2.x/docs/themes-and-templates.html的文档。默认情况下,Struts2使用xhtml
主题。在这个主题中,元素被放在表格单元格中。您可以通过在标记中指定theme="simple"
属性来更改它。注意:如果您使用simple
主题,则会出现字段错误。